mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
17 lines
276 B
Go
17 lines
276 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/cloudsonic/sonic-server/conf"
|
|
)
|
|
|
|
func main() {
|
|
conf.Load()
|
|
|
|
fmt.Printf("\nCloudSonic Server v%s\n\n", "0.2")
|
|
|
|
a := createApp(conf.Sonic.MusicFolder)
|
|
a.MountRouter("/rest/", initRouter().Routes())
|
|
a.Run(":" + conf.Sonic.Port)
|
|
}
|