diff options
| author | Bobby <[email protected]> | 2025-03-27 10:53:55 +0530 |
|---|---|---|
| committer | Bobby <[email protected]> | 2025-03-27 10:53:55 +0530 |
| commit | c9067d21d4fd93f7469b92e198b6a2fffe57f699 (patch) | |
| tree | f603a218c36bb74431bf11360487971747d877aa /types/bot.go | |
| download | ai-c9067d21d4fd93f7469b92e198b6a2fffe57f699.tar.xz ai-c9067d21d4fd93f7469b92e198b6a2fffe57f699.zip | |
Initialised Bare Bones
Diffstat (limited to 'types/bot.go')
| -rw-r--r-- | types/bot.go | 19 |
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 +} |
