mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 04:27:37 +03:00
19 lines
366 B
Go
19 lines
366 B
Go
package main
|
|
|
|
import (
|
|
"github.com/deluan/navidrome/conf"
|
|
"github.com/deluan/navidrome/server"
|
|
)
|
|
|
|
func main() {
|
|
conf.Load()
|
|
|
|
if !conf.Server.DevDisableBanner {
|
|
server.ShowBanner()
|
|
}
|
|
|
|
a := CreateServer(conf.Server.MusicFolder)
|
|
a.MountRouter("/rest", CreateSubsonicAPIRouter())
|
|
a.MountRouter("/app", CreateAppRouter("/app"))
|
|
a.Run(":" + conf.Server.Port)
|
|
}
|