aboutsummaryrefslogtreecommitdiff
path: root/http_handle_users.go
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-02-13 09:06:39 +0800
committerRunxi Yu <me@runxiyu.org>2025-02-13 09:06:39 +0800
commit1ef35cb2d6c4396c4d25a57ad5bd8c00fc790cb4 (patch)
tree3c5f071f90508fd73e82ac0b94c7185dee668978 /http_handle_users.go
parent_header.html: Format the main header (diff)
downloadforge-1ef35cb2d6c4396c4d25a57ad5bd8c00fc790cb4.tar.gz
forge-1ef35cb2d6c4396c4d25a57ad5bd8c00fc790cb4.tar.zst
forge-1ef35cb2d6c4396c4d25a57ad5bd8c00fc790cb4.zip
users: Print not implemented
Diffstat (limited to 'http_handle_users.go')
-rw-r--r--http_handle_users.go2
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")
}