First commit

This commit is contained in:
2024-10-28 20:33:40 -04:00
commit 5d03c6aa09
9 changed files with 271 additions and 0 deletions

10
config/config.go Normal file
View File

@ -0,0 +1,10 @@
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.
}