2
0
Fork 0

fix formatting (again)

main
Ducky 2024-06-17 20:05:50 +01:00
parent 5acdb5f4b5
commit 11730a208e
1 changed files with 4 additions and 4 deletions

View File

@ -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)