mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Removed LedisDB persistence layer. May reimplement in the future (not likely thou)
This commit is contained in:
parent
614f4afe28
commit
536244bc44
20 changed files with 14 additions and 1329 deletions
7
main.go
7
main.go
|
@ -4,7 +4,6 @@ import (
|
|||
"fmt"
|
||||
|
||||
"github.com/cloudsonic/sonic-server/conf"
|
||||
"github.com/cloudsonic/sonic-server/persistence"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
@ -12,9 +11,7 @@ func main() {
|
|||
|
||||
fmt.Printf("\nCloudSonic Server v%s\n\n", "0.2")
|
||||
|
||||
provider := persistence.ProviderIdentifier(conf.Sonic.DevPersistenceProvider)
|
||||
|
||||
a := CreateApp(conf.Sonic.MusicFolder, provider)
|
||||
a.MountRouter("/rest/", CreateSubsonicAPIRouter(provider))
|
||||
a := CreateApp(conf.Sonic.MusicFolder)
|
||||
a.MountRouter("/rest/", CreateSubsonicAPIRouter())
|
||||
a.Run(":" + conf.Sonic.Port)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue