changed http handle func dir for adding members to group

This commit is contained in:
2026-04-01 18:52:36 +02:00
parent 75c23c151f
commit 81d0d19064
+1 -1
View File
@@ -23,7 +23,7 @@ func main() {
http.HandleFunc("/mod/group/addclients", withCORS(HttpHandleGroupAddClient))
http.HandleFunc("/new/message", withCORS(HttpHandleNewMessage))
http.HandleFunc("/get/groups", withCORS(HttpHandleGroupsGetWithoutMembers))
http.HandleFunc("/get/groupmembers", withCORS(HttpHandleGroupMembersGet))
http.HandleFunc("/get/group/members", withCORS(HttpHandleGroupMembersGet))
http.HandleFunc("/ws", ServeWsConnection)
log.Println("listening on :8080")