mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-10 09:52:51 +00:00
14 lines
256 B
Go
14 lines
256 B
Go
package test
|
|
|
|
import (
|
|
"github.com/julienschmidt/httprouter"
|
|
"net/http"
|
|
)
|
|
|
|
// Redirect to discord
|
|
func Discord(w http.ResponseWriter, r *http.Request, _ httprouter.Params) {
|
|
|
|
http.Redirect(w, r, "https://discordapp.com/invite/0Z2tzxKECEj2BHwj", 301)
|
|
|
|
}
|