summaryrefslogtreecommitdiff
path: root/types/bot.go
diff options
context:
space:
mode:
authorBobby <[email protected]>2025-03-27 10:53:55 +0530
committerBobby <[email protected]>2025-03-27 10:53:55 +0530
commitc9067d21d4fd93f7469b92e198b6a2fffe57f699 (patch)
treef603a218c36bb74431bf11360487971747d877aa /types/bot.go
downloadai-c9067d21d4fd93f7469b92e198b6a2fffe57f699.tar.xz
ai-c9067d21d4fd93f7469b92e198b6a2fffe57f699.zip
Initialised Bare Bones
Diffstat (limited to 'types/bot.go')
-rw-r--r--types/bot.go19
1 files changed, 19 insertions, 0 deletions
diff --git a/types/bot.go b/types/bot.go
new file mode 100644
index 0000000..417aecc
--- /dev/null
+++ b/types/bot.go
@@ -0,0 +1,19 @@
+package types
+
+type ActivityType int
+
+const (
+ PLAYING ActivityType = iota
+ LISTENING
+ WATCHING
+ STREAMING
+)
+
+type BotConfig struct {
+ DiscordToken string
+ SpotifyClientId string
+ SpotifyClientSecret string
+ YoutubeAPIKey string
+ Activity ActivityType
+ ActivityMessage string
+}