mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Moved package api
to subsonic
under server
This commit is contained in:
parent
67eeb218c4
commit
7610b42f4b
59 changed files with 41 additions and 41 deletions
|
@ -3,18 +3,18 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"github.com/cloudsonic/sonic-server/api"
|
||||
"github.com/cloudsonic/sonic-server/engine"
|
||||
"github.com/cloudsonic/sonic-server/persistence"
|
||||
"github.com/cloudsonic/sonic-server/scanner"
|
||||
"github.com/cloudsonic/sonic-server/server"
|
||||
"github.com/cloudsonic/sonic-server/server/subsonic"
|
||||
"github.com/google/wire"
|
||||
)
|
||||
|
||||
var allProviders = wire.NewSet(
|
||||
engine.Set,
|
||||
scanner.New,
|
||||
api.NewRouter,
|
||||
subsonic.NewRouter,
|
||||
persistence.Set,
|
||||
)
|
||||
|
||||
|
@ -25,6 +25,6 @@ func CreateApp(musicFolder string) *server.Server {
|
|||
))
|
||||
}
|
||||
|
||||
func CreateSubsonicAPIRouter() *api.Router {
|
||||
func CreateSubsonicAPIRouter() *subsonic.Router {
|
||||
panic(wire.Build(allProviders))
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue