mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Implement Last.FM Desktop Auth flow endpoints
This commit is contained in:
parent
8ee5c1f245
commit
502a719e96
8 changed files with 224 additions and 16 deletions
|
@ -7,6 +7,7 @@ import (
|
|||
|
||||
"github.com/google/wire"
|
||||
"github.com/navidrome/navidrome/core"
|
||||
"github.com/navidrome/navidrome/core/agents/lastfm"
|
||||
"github.com/navidrome/navidrome/persistence"
|
||||
"github.com/navidrome/navidrome/scanner"
|
||||
"github.com/navidrome/navidrome/scheduler"
|
||||
|
@ -21,6 +22,7 @@ var allProviders = wire.NewSet(
|
|||
subsonic.New,
|
||||
nativeapi.New,
|
||||
persistence.New,
|
||||
lastfm.NewRouter,
|
||||
GetBroker,
|
||||
)
|
||||
|
||||
|
@ -44,6 +46,12 @@ func CreateSubsonicAPIRouter() *subsonic.Router {
|
|||
))
|
||||
}
|
||||
|
||||
func CreateLastFMRouter() *lastfm.Router {
|
||||
panic(wire.Build(
|
||||
allProviders,
|
||||
))
|
||||
}
|
||||
|
||||
// Scanner must be a Singleton
|
||||
var (
|
||||
onceScanner sync.Once
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue