mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
31 lines
693 B
Go
31 lines
693 B
Go
//+build wireinject
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/cloudsonic/sonic-server/engine"
|
|
"github.com/cloudsonic/sonic-server/itunesbridge"
|
|
"github.com/cloudsonic/sonic-server/persistence/db_ledis"
|
|
"github.com/cloudsonic/sonic-server/persistence/db_storm"
|
|
"github.com/cloudsonic/sonic-server/scanner"
|
|
"github.com/deluan/gomate"
|
|
"github.com/deluan/gomate/ledis"
|
|
"github.com/google/wire"
|
|
)
|
|
|
|
var allProviders = wire.NewSet(
|
|
itunesbridge.NewItunesControl,
|
|
//db_ledis.Set,
|
|
db_storm.Set,
|
|
engine.Set,
|
|
scanner.Set,
|
|
newDB,
|
|
)
|
|
|
|
func initImporter(musicFolder string) *scanner.Importer {
|
|
panic(wire.Build(allProviders))
|
|
}
|
|
|
|
func newDB() gomate.DB {
|
|
return ledis.NewEmbeddedDB(db_ledis.Db())
|
|
}
|