fuck github!

This commit is contained in:
Lain Iwakura 2025-07-12 14:14:29 +03:00
parent 41196c09dd
commit 39504529d2
No known key found for this signature in database
GPG Key ID: C7C18257F2ADC6F8

View File

@ -86,6 +86,9 @@ func wsHandler(w http.ResponseWriter, r *http.Request) {
} else if buffer == "windows" { } else if buffer == "windows" {
conn.WriteJSON(map[string]string{"action": "show_message", "message": "Windows ALWAYS sucks"}) conn.WriteJSON(map[string]string{"action": "show_message", "message": "Windows ALWAYS sucks"})
buffer = "" buffer = ""
} else if buffer == "github" {
conn.WriteJSON(map[string]string{"action": "redirect", "url": "https://codeberg.org/"})
buffer = ""
} }
} }
} }