mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-11 18:32:50 +00:00
21 lines
430 B
Go
21 lines
430 B
Go
package controller
|
|
|
|
import (
|
|
"github.com/julienschmidt/httprouter"
|
|
"net/http"
|
|
)
|
|
|
|
// Redirect to discord
|
|
func DiscordRedirect(w http.ResponseWriter, r *http.Request, _ httprouter.Params) {
|
|
|
|
http.Redirect(w, r, "https://discordapp.com/invite/0Z2tzxKECEj2BHwj", 301)
|
|
|
|
}
|
|
|
|
// Redirect to discord
|
|
func VPNRedirect(w http.ResponseWriter, r *http.Request, _ httprouter.Params) {
|
|
|
|
http.Redirect(w, r, "https://mitchel.io:943", 301)
|
|
|
|
}
|