11 lines
207 B
Go
11 lines
207 B
Go
package config
|
|
|
|
var (
|
|
BotToken = " " // Define your bot token here
|
|
CFBDAPIKey = " " // Define your CFBD API Key here
|
|
)
|
|
|
|
func LoadConfig() {
|
|
// Just leaving this here in case we need to add stuff later.
|
|
}
|