refactor: new persistence, more SQL, less ORM

This commit is contained in:
Deluan 2020-01-28 08:22:17 -05:00 committed by Deluan Quintão
parent b26a5ef2d0
commit 71c1844bca
38 changed files with 1294 additions and 1346 deletions

View file

@ -2,6 +2,7 @@ package main
import (
"github.com/deluan/navidrome/conf"
"github.com/deluan/navidrome/db"
)
func main() {
@ -10,6 +11,7 @@ func main() {
}
conf.Load()
db.EnsureDB()
a := CreateServer(conf.Server.MusicFolder)
a.MountRouter("/rest", CreateSubsonicAPIRouter())