feat: add -help, simplified config loading

This commit is contained in:
Deluan 2020-01-26 16:21:07 -05:00
parent cc58642185
commit 828dc8f0f4
2 changed files with 12 additions and 47 deletions

View file

@ -5,12 +5,12 @@ import (
)
func main() {
conf.Load()
if !conf.Server.DevDisableBanner {
ShowBanner()
}
conf.Load()
a := CreateServer(conf.Server.MusicFolder)
a.MountRouter("/rest", CreateSubsonicAPIRouter())
a.MountRouter("/app", CreateAppRouter("/app"))