diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-22 13:44:03 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-22 13:44:03 +0800 |
commit | 99fd8a9cf96a51fcd9e50445cb035cc9ecd012de (patch) | |
tree | 077812874d2650216549048524886059391b5d45 /http_handle_users.go | |
parent | Initial linting (diff) | |
download | forge-99fd8a9cf96a51fcd9e50445cb035cc9ecd012de.tar.gz forge-99fd8a9cf96a51fcd9e50445cb035cc9ecd012de.tar.zst forge-99fd8a9cf96a51fcd9e50445cb035cc9ecd012de.zip |
Variable name lengths
Diffstat (limited to 'http_handle_users.go')
-rw-r--r-- | http_handle_users.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/http_handle_users.go b/http_handle_users.go index df0c99a..2570de7 100644 --- a/http_handle_users.go +++ b/http_handle_users.go @@ -7,6 +7,6 @@ import ( "net/http" ) -func httpHandleUsers(w http.ResponseWriter, _ *http.Request, _ map[string]any) { - http.Error(w, "Not implemented", http.StatusNotImplemented) +func httpHandleUsers(writer http.ResponseWriter, _ *http.Request, _ map[string]any) { + http.Error(writer, "Not implemented", http.StatusNotImplemented) } |