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