From 6f86aaffc8814227f0cacec9bb1efd114aae7dd4 Mon Sep 17 00:00:00 2001 From: Ducky Date: Mon, 17 Jun 2024 21:02:30 +0200 Subject: [PATCH] Add redirects for creativeicing and gearbound --- main.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/main.go b/main.go index 8291ca1..3fb72e4 100644 --- a/main.go +++ b/main.go @@ -40,8 +40,10 @@ func HandleWebfinger(w http.ResponseWriter, req *http.Request) { func main() { redirects = make(map[string][]string) + redirects["astra@gearheads.social"] = []string{"astra", "ap.zio.sh"} redirects["ducky@gearheads.social"] = []string{"ducky", "ap.zio.sh"} - redirects["astra@gearheads.social"] = []string{"astra", "ap.zio.sh"} + redirects["creativeicing@gearheads.social"] = []string{"CreativeIcing", "rubber.social"} + redirects["gearbound@gearheads.social"] = []string{"gearbound", "rubber.social"} http.HandleFunc("/.well-known/webfinger", HandleWebfinger) http.ListenAndServe(":8888", nil)