diff options
author | Runxi Yu <me@runxiyu.org> | 2025-02-13 09:06:39 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-02-13 09:06:39 +0800 |
commit | 1ef35cb2d6c4396c4d25a57ad5bd8c00fc790cb4 (patch) | |
tree | 3c5f071f90508fd73e82ac0b94c7185dee668978 | |
parent | _header.html: Format the main header (diff) | |
download | forge-1ef35cb2d6c4396c4d25a57ad5bd8c00fc790cb4.tar.gz forge-1ef35cb2d6c4396c4d25a57ad5bd8c00fc790cb4.tar.zst forge-1ef35cb2d6c4396c4d25a57ad5bd8c00fc790cb4.zip |
users: Print not implemented
Diffstat (limited to '')
-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") } |