aboutsummaryrefslogtreecommitdiff
path: root/cmd.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.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.go')
-rw-r--r--cmd.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd.go b/cmd.go
index badd5b7..a7f2ff5 100644
--- a/cmd.go
+++ b/cmd.go
@@ -1,5 +1,5 @@
package main
-var commandHandlers = map[string](func(RMsg, *Client) error){}
+var CommandHandlers = map[string](func(RMsg, *Client) error){}
/* Maybe we should make command handlers return their values for easier labelled-reply? */