15 lines
248 B
Go
15 lines
248 B
Go
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")
|
|
}
|