package admin import "net/http" func (s *AdminServer) handleFlags(w http.ResponseWriter, r *http.Request) { if r.Method != http.MethodGet { http.Error(w, "method not allowed", http.StatusMethodNotAllowed) return } writeJSON(w, map[string]any{ "flags": []any{}, "note": "world flags are in-memory only", }) }