summaryrefslogtreecommitdiff
path: root/types/bot.go
blob: f7eb53e0f47998ac73da8b753310076a1aba4eec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package types

type ActivityType int

const (
	PLAYING ActivityType = iota
	LISTENING
	WATCHING
	STREAMING
)

type BotConfig struct {
	GuildID             string
	DiscordToken        string
	SpotifyClientId     string
	SpotifyClientSecret string
	YoutubeAPIKey       string
	Activity            ActivityType
	ActivityMessage     string
	ActivityURL         string
}