well known: remove discord
crispy-caesus crispy@crispy-caesus.eu
Thu, 26 Feb 2026 23:32:32 +0100
1 files changed,
0 insertions(+),
5 deletions(-)
jump to
M
cmd/server/main.go
→
cmd/server/main.go
@@ -19,11 +19,6 @@ http.HandleFunc("/music", func(w http.ResponseWriter, r *http.Request) {
http.ServeFile(w, r, "templates/music.html") }) - http.HandleFunc("/.well-known/discord", func(w http.ResponseWriter, r *http.Request) { - w.Header().Set("Content-Type", "text/plain") - w.Write([]byte("dh=b81129b4e9cc388c5ab63919550316fc3ca5ebe4")) - }) - fmt.Println("Running on :8080") log.Fatal(http.ListenAndServe("0.0.0.0:8080", nil)) }