mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Add public endpoint to expose images
This commit is contained in:
parent
7fbcb2904a
commit
387acc5f63
9 changed files with 177 additions and 36 deletions
|
@ -16,6 +16,7 @@ import (
|
|||
"github.com/navidrome/navidrome/server"
|
||||
"github.com/navidrome/navidrome/server/events"
|
||||
"github.com/navidrome/navidrome/server/nativeapi"
|
||||
"github.com/navidrome/navidrome/server/public"
|
||||
"github.com/navidrome/navidrome/server/subsonic"
|
||||
)
|
||||
|
||||
|
@ -24,6 +25,7 @@ var allProviders = wire.NewSet(
|
|||
artwork.Set,
|
||||
subsonic.New,
|
||||
nativeapi.New,
|
||||
public.New,
|
||||
persistence.New,
|
||||
lastfm.NewRouter,
|
||||
listenbrainz.NewRouter,
|
||||
|
@ -51,6 +53,12 @@ func CreateSubsonicAPIRouter() *subsonic.Router {
|
|||
))
|
||||
}
|
||||
|
||||
func CreatePublicRouter() *public.Router {
|
||||
panic(wire.Build(
|
||||
allProviders,
|
||||
))
|
||||
}
|
||||
|
||||
func CreateLastFMRouter() *lastfm.Router {
|
||||
panic(wire.Build(
|
||||
allProviders,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue