Add config parsing

This commit is contained in:
Piper Pentagram 2024-11-06 13:32:37 -08:00
parent 44a2e7d6c8
commit bea76cd380
6 changed files with 198 additions and 5 deletions

View file

@ -21,6 +21,12 @@ func main() {
log.Fatal("application id is not set")
}
err := parseConfigs()
if err != nil {
log.Fatal(err)
}
startBot()
}