mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
20 lines
332 B
Go
20 lines
332 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/cloudsonic/sonic-server/api"
|
|
"github.com/cloudsonic/sonic-server/conf"
|
|
)
|
|
|
|
func main() {
|
|
conf.LoadFromLocalFile()
|
|
conf.LoadFromFlags()
|
|
|
|
fmt.Printf("\nCloudSonic Server v%s\n\n", "0.2")
|
|
|
|
a := App{}
|
|
a.Initialize()
|
|
a.MountRouter("/rest/", api.Router())
|
|
a.Run(":" + conf.Sonic.Port)
|
|
}
|