From 11730a208e29c18c1c56f8d49fda7684bba9ea4c Mon Sep 17 00:00:00 2001 From: Ducky Date: Mon, 17 Jun 2024 20:05:50 +0100 Subject: [PATCH] fix formatting (again) --- main.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/main.go b/main.go index d811443..7c60ac3 100644 --- a/main.go +++ b/main.go @@ -40,10 +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["creativeicing@gearheads.social"] = []string{"CreativeIcing", "rubber.social"} - redirects["gearbound@gearheads.social"] = []string{"gearbound", "rubber.social"} + redirects["astra@gearheads.social"] = []string{"astra", "ap.zio.sh"} + redirects["ducky@gearheads.social"] = []string{"ducky", "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)