Added start of balances

This commit is contained in:
2026-03-01 13:07:22 +01:00
parent 54a8292234
commit ddf06554f8
3 changed files with 21 additions and 3 deletions

12
handlers/balance.go Normal file
View File

@@ -0,0 +1,12 @@
package handlers
import "net/http"
func GetBalance(w http.ResponseWriter, r *http.Request) {
query := r.URL.Query()
userParam := query.Get("user")
if userParam == "" {
}
}