mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 04:57:37 +03:00
25 lines
556 B
Go
25 lines
556 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/deluan/navidrome/conf"
|
|
"github.com/deluan/navidrome/consts"
|
|
"github.com/deluan/navidrome/db"
|
|
)
|
|
|
|
func main() {
|
|
println(consts.Banner())
|
|
|
|
conf.Load()
|
|
db.EnsureLatestVersion()
|
|
|
|
subsonic, err := CreateSubsonicAPIRouter()
|
|
if err != nil {
|
|
panic(fmt.Sprintf("Could not create the Subsonic API router. Aborting! err=%v", err))
|
|
}
|
|
a := CreateServer(conf.Server.MusicFolder)
|
|
a.MountRouter(consts.URLPathSubsonicAPI, subsonic)
|
|
a.MountRouter(consts.URLPathUI, CreateAppRouter())
|
|
a.Run(":" + conf.Server.Port)
|
|
}
|