before rewrite

This commit is contained in:
2026-03-15 17:59:22 +01:00
parent c97b21a39e
commit 9a677d7e46
9 changed files with 125 additions and 30 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ func main() {
http.HandleFunc("POST /new/account", RegisterHandler)
http.HandleFunc("POST /new/token", LoginHandler)
http.HandleFunc("POST /new/group", CreateGroupHandler)
http.HandleFunc("POST /new/messageto/{groupid}", SendMessageHandler)
http.HandleFunc("POST /new/messageto/group/{groupid}", SendMessageToGroupHandler)
log.Fatal(http.ListenAndServe(":8080", nil))
}