aboutsummaryrefslogtreecommitdiff
path: root/chatcommands.go
diff options
context:
space:
mode:
authorHimbeerserverDE <himbeerserverde@gmail.com>2021-09-05 19:20:34 +0200
committerHimbeerserverDE <himbeerserverde@gmail.com>2021-09-05 19:23:01 +0200
commitb34001a0a59cc9903bdaaf7ae1c692ea1f8ba97c (patch)
tree9f9577d3c5a00dcc965eebd149021e64c456bdbf /chatcommands.go
parentcd8a71ff08280eea5dadcf1904f76c37b67033ae (diff)
Useless code
Diffstat (limited to 'chatcommands.go')
-rw-r--r--chatcommands.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/chatcommands.go b/chatcommands.go
new file mode 100644
index 0000000..568d1eb
--- /dev/null
+++ b/chatcommands.go
@@ -0,0 +1,10 @@
+package main
+
+func HandleChatCmd(cmd string, args []string) bool {
+ switch cmd {
+ default:
+ return false
+ }
+
+ return true
+}