about summary refs log tree commit diff
path: root/cmd/bot
diff options
context:
space:
mode:
authorMel <einebeere@gmail.com>2022-04-02 02:42:12 +0200
committerMel <einebeere@gmail.com>2022-04-03 23:50:05 +0200
commitdfeef2aad6fb25eadc13c12e1caea7160bfe6c3e (patch)
tree23638e02600e7e17aa81c09afc8a6aff5c93a79e /cmd/bot
parent7040cd50ae9a1408d1bb7a7c23b961f48d864143 (diff)
downloadjinx-dfeef2aad6fb25eadc13c12e1caea7160bfe6c3e.tar.zst
jinx-dfeef2aad6fb25eadc13c12e1caea7160bfe6c3e.zip
Contact Discord through WS
Diffstat (limited to 'cmd/bot')
-rw-r--r--cmd/bot/main.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/cmd/bot/main.go b/cmd/bot/main.go
index 2813504..b709ffc 100644
--- a/cmd/bot/main.go
+++ b/cmd/bot/main.go
@@ -3,5 +3,9 @@ package main
 import "jinx/pkg/bot"
 
 func main() {
-	bot.Greet()
+	err := bot.Start()
+
+	if err != nil {
+		panic(err)
+	}
 }