aboutsummaryrefslogtreecommitdiff
path: root/cmd_user.go
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2024-12-08 14:08:00 +0800
committerRunxi Yu <me@runxiyu.org>2024-12-08 14:08:00 +0800
commit9759c4f267ab1af0fe698f7f625c70d5078d2c5f (patch)
tree33d29acc51f5e610f22c796d0409919c10f9853c /cmd_user.go
parentCaps should be defined in separate files (diff)
downloadmeseircd-9759c4f267ab1af0fe698f7f625c70d5078d2c5f.tar.gz
meseircd-9759c4f267ab1af0fe698f7f625c70d5078d2c5f.tar.zst
meseircd-9759c4f267ab1af0fe698f7f625c70d5078d2c5f.zip
commandHandlers -> CommandHandlers
Diffstat (limited to 'cmd_user.go')
-rw-r--r--cmd_user.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd_user.go b/cmd_user.go
index bf8df64..93ee17e 100644
--- a/cmd_user.go
+++ b/cmd_user.go
@@ -5,7 +5,7 @@ import (
)
func init() {
- commandHandlers["USER"] = handleClientUser
+ CommandHandlers["USER"] = handleClientUser
}
func handleClientUser(msg RMsg, client *Client) error {