about summary refs log tree commit diff
path: root/cmd
diff options
context:
space:
mode:
Diffstat (limited to 'cmd')
-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)
+	}
 }