package appconfig import ( "fmt" "net/http" ) func handleAuthzConfig(w http.ResponseWriter, req *http.Request) { headers := w.Header() headers.Set("content-type", "text/plain") w.WriteHeader(http.StatusOK) fmt.Fprintf(w, "hello, world") }