From 7fc3740f3f417717f70d187b1aeabc0de9c63e54 Mon Sep 17 00:00:00 2001 From: astra Date: Wed, 31 Jul 2024 17:33:19 +0100 Subject: [PATCH] Add users --- main.go | 30 ++++++++++++++++++++++++------ 1 file changed, 24 insertions(+), 6 deletions(-) diff --git a/main.go b/main.go index 426fc71..ae04f8f 100644 --- a/main.go +++ b/main.go @@ -40,10 +40,6 @@ 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["theducky@gearheads.social"] = []string{"ducky", "zio.sh"} redirects["TinkerGear@gearheads.social"] = []string{"TinkerGear", "woof.group"} redirects["gearedrock@gearheads.social"] = []string{"gearedrock", "rubber.social"} @@ -51,7 +47,6 @@ func main() { redirects["PupNirru@gearheads.social"] = []string{"PupNirru", "rubber.social"} redirects["queerbeetfetischboy@gearheads.social"] = []string{"queerbeetgearhead", "gearheads.social"} redirects["Vekton@gearheads.social"] = []string{"Vekton", "rubber.social"} - redirects["gearfrk11814@gearheads.social"] = []string{"Gearfreak_OFR", "gearheads.social"} redirects["gearlicious@gearheads.social"] = []string{"gearlicious", "rubber.social"} redirects["Duke_Albert@gearheads.social"] = []string{"Duke_Albert", "mastodon.social"} redirects["rbbrbts@gearheads.social"] = []string{"queer_workwear", "rubber.social"} @@ -74,8 +69,10 @@ func main() { redirects["cphFFsub@gearheads.social"] = []string{"cphFFsub", "woof.group"} redirects["Lthman@gearheads.social"] = []string{"FFmanCPH", "woof.group"} redirects["RTFM@gearheads.social"] = []string{"RTFM", "rubber.social"} + redirects["ducky@gearheads.social"] = []string{"ducky", "zio.sh"} redirects["bondageflo@gearheads.social"] = []string{"bondageflo", "rubber.social"} redirects["masterhusband@gearheads.social"] = []string{"masterhusband", "woof.group"} + redirects["astra@gearheads.social"] = []string{"astra", "zio.sh"} redirects["rgemaster@gearheads.social"] = []string{"RGEMaster", "rubber.social"} redirects["GaySlaveHusband@gearheads.social"] = []string{"GaySlaveHusband", "woof.group"} redirects["arcticopsmx@gearheads.social"] = []string{"arcticopsmx", "woof.group"} @@ -85,11 +82,32 @@ func main() { redirects["rumble@gearheads.social"] = []string{"rumble", "rubber.social"} redirects["uniformgearhead@gearheads.social"] = []string{"uniformgearhead", "gear.pictures"} redirects["superpsyze@gearheads.social"] = []string{"superpsyze", "rubber.social"} + redirects["atlas_fm82@gearheads.social"] = []string{"atlas_fm82", "rubber.social"} + redirects["JonnyNL@gearheads.social"] = []string{"JonnyNL", "gear.pictures"} + redirects["queerbeetgearhead@gearheads.social"] = []string{"qb_gearhead", "gear.pictures"} + redirects["CreativeIcing@gearheads.social"] = []string{"CreativeIcing", "rubber.social"} + redirects["KoleBlackSoul@gearheads.social"] = []string{"koleblacksoul", "rubber.social"} + redirects["thatmilgay@gearheads.social"] = []string{"thatmilgay", "rubber.social"} + redirects["astc@gearheads.social"] = []string{"Ast", "mastodon.social"} + redirects["b0xch@gearheads.social"] = []string{"Alpenhupfi", "rubber.social"} + redirects["gregingear@gearheads.social"] = []string{"gregingear", "rubber.social"} + redirects["fighter_13579@gearheads.social"] = []string{"fighter13579", "woof.group"} + redirects["GoB@gearheads.social"] = []string{"GearOnBike", "rubber.social"} + redirects["HoodyRubsagger@gearheads.social"] = []string{"HoodyRubsagger", "rubber.social"} + redirects["foxnirrod@gearheads.social"] = []string{"foxnirrod", "rubber.social"} + redirects["gearq@gearheads.social"] = []string{"gearq", "rubber.social"} + redirects["NewdDawg@gearheads.social"] = []string{"NewdDawg", "woof.group"} + redirects["anotherfetishdude@gearheads.social"] = []string{"anotherfetishdude", "rubber.social"} + redirects["fetlads@gearheads.social"] = []string{"fetlads", "zio.sh"} + redirects["GaySkaterCaster@gearheads.social"] = []string{"GaySkaterFeet", "kinky.business"} redirects["wheeeehe@gearheads.social"] = []string{"pluisje", "rubber.social"} - redirects["JonnyNL@gearheads.social"] = []string{"JonnyNL", "gear.pictures"} + redirects["gearfrk11814@gearheads.social"] = []string{"Gearfreak_OFR", "gearheads.social"} + redirects["creativeicing@gearheads.social"] = []string{"CreativeIcing", "rubber.social"} + redirects["gearbound@gearheads.social"] = []string{"gearbound", "rubber.social"} redirects["Yepp@gearheads.social"] = []string{"Yepp", "rubber.social"} redirects["Divik@gearheads.social"] = []string{"Sir_Divik", "woof.group"} + redirects["staff@gearheads.social"] = []string{"gearheads.chat", "bsky.brid.gy"} http.HandleFunc("/.well-known/webfinger", HandleWebfinger) http.ListenAndServe(":8888", nil)