aboutsummaryrefslogtreecommitdiff
path: root/cmd_cap.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_cap.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_cap.go')
-rw-r--r--cmd_cap.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd_cap.go b/cmd_cap.go
index c1ddb1d..a2af228 100644
--- a/cmd_cap.go
+++ b/cmd_cap.go
@@ -5,7 +5,7 @@ import (
)
func init() {
- commandHandlers["CAP"] = handleClientCap
+ CommandHandlers["CAP"] = handleClientCap
}
func handleClientCap(msg RMsg, client *Client) error {