diff options
author | Runxi Yu <me@runxiyu.org> | 2024-12-08 08:52:23 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2024-12-08 08:52:23 +0800 |
commit | d201e74fff4e6d82d639d858826bdb4190936c07 (patch) | |
tree | 7e5de8e206bf913fc0bbef5eba81b06fa9c1e06c /cmd.go | |
parent | Add basic command handling (diff) | |
download | meseircd-d201e74fff4e6d82d639d858826bdb4190936c07.tar.gz meseircd-d201e74fff4e6d82d639d858826bdb4190936c07.tar.zst meseircd-d201e74fff4e6d82d639d858826bdb4190936c07.zip |
Server and self awareness
Diffstat (limited to '')
-rw-r--r-- | cmd.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,5 +1,5 @@ package main -var commandHandlers = map[string](func(RMsg, *Client) (error)){} +var commandHandlers = map[string](func(RMsg, *Client) bool){} /* Maybe we should make command handlers return their values for easier labelled-reply? */ |