diff options
Diffstat (limited to 'http_handle_users.go')
-rw-r--r-- | http_handle_users.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/http_handle_users.go b/http_handle_users.go index 44133b0..bf5939e 100644 --- a/http_handle_users.go +++ b/http_handle_users.go @@ -1,10 +1,9 @@ package main import ( - "fmt" "net/http" ) func handle_users(w http.ResponseWriter, r *http.Request, params map[string]any) { - fmt.Fprintln(w, "Not implemented") + http.Error(w, "Not implemented", http.StatusNotImplemented) } |