Rename redundant init function

This change renames logging.InitLogger() to logging.Init().
This commit is contained in:
Piper Pentagram 2024-11-08 14:00:27 -08:00
parent a82ba0f51b
commit f86efba6bd
2 changed files with 2 additions and 2 deletions

View file

@ -34,7 +34,7 @@ func main() {
log.Fatal(err)
}
logging.InitLogger(appConfig)
logging.Init(appConfig)
err = startBot()