package admin import "net/http" func (s *AdminServer) handleGlobalFlags(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{ "global_flags": []any{}, "note": "global flags are in-memory only", }) }