Simplify API routes mounting

This commit is contained in:
Deluan 2020-01-11 13:21:43 -05:00 committed by Deluan Quintão
parent 5acc9c7a22
commit 48b465f2fb
2 changed files with 11 additions and 3 deletions

View file

@ -12,6 +12,6 @@ func main() {
fmt.Printf("\nCloudSonic Server v%s\n\n", "0.2")
a := createApp(conf.Sonic.MusicFolder)
a.MountRouter("/rest/", initRouter().Routes())
a.MountRouter("/rest/", initRouter())
a.Run(":" + conf.Sonic.Port)
}