summaryrefslogtreecommitdiff
path: root/types/bot.go
blob: 2f6adf38efa76a78017b9687431d9cc24f1ac4c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
	ActivityURL         string
}