package main import ( "log/slog" "net/http" "github.com/google/uuid" ) // Big bungus function here! // //hh:route GET /org/{orgID}/users func adminUsersForm(w http.ResponseWriter, r struct { r *http.Request search string `hh:"form"` year int `hh:"optional,form"` offset int `hh:"form"` orgID uuid.UUID `hh:"path"` banana uuid.UUID `hh:"optional,form"` nextURL string `hh:"optional,cookie,logout_next_url"` }) { _, _ = w.Write([]byte("ahahaha")) slog.Info("get admin users form", "search", r.search, "offset", r.offset, "next-url", r.nextURL) } func main() { hhMountRoutes(nil) http.ListenAndServe(":http", nil) }