mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-10 09:52:51 +00:00
merging back into one repo - not going to host on app engine - google won't allow me to connect to external database
This commit is contained in:
22
server/controller/redirect.go
Normal file
22
server/controller/redirect.go
Normal file
@@ -0,0 +1,22 @@
|
||||
package controller
|
||||
|
||||
import (
|
||||
"github.com/julienschmidt/httprouter"
|
||||
"net/http"
|
||||
)
|
||||
|
||||
// redirects for personal use
|
||||
// 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)
|
||||
}
|
||||
|
||||
// Redirect to security cameras
|
||||
func CameraRedirect(w http.ResponseWriter, r *http.Request, _ httprouter.Params) {
|
||||
http.Redirect(w, r, "http://24.118.44.161:8080/html/", 301)
|
||||
}
|
||||
Reference in New Issue
Block a user