mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Change API name
This commit is contained in:
parent
2650e4c27c
commit
09e52eba87
5 changed files with 5 additions and 5 deletions
2
Makefile
2
Makefile
|
@ -49,7 +49,7 @@ wire: check_go_env ##@Development Update Dependency Injection
|
||||||
go run github.com/google/wire/cmd/wire@latest ./...
|
go run github.com/google/wire/cmd/wire@latest ./...
|
||||||
.PHONY: wire
|
.PHONY: wire
|
||||||
|
|
||||||
api: check_go_env ##@Development Generate Aura API Server Boilerplate
|
api: check_go_env ##@Development Generate New Native API Server Boilerplate
|
||||||
go generate ./server/api/...
|
go generate ./server/api/...
|
||||||
.PHONY: api
|
.PHONY: api
|
||||||
|
|
||||||
|
|
|
@ -103,7 +103,7 @@ func startServer(ctx context.Context) func() error {
|
||||||
if strings.HasPrefix(conf.Server.UILoginBackgroundURL, "/") {
|
if strings.HasPrefix(conf.Server.UILoginBackgroundURL, "/") {
|
||||||
a.MountRouter("Background images", consts.DefaultUILoginBackgroundURL, backgrounds.NewHandler())
|
a.MountRouter("Background images", consts.DefaultUILoginBackgroundURL, backgrounds.NewHandler())
|
||||||
}
|
}
|
||||||
a.MountRouter("Aura API", consts.URLPathAPI, CreateAuraAPIRouter())
|
a.MountRouter("New Native API", consts.URLPathAPI, CreateNewNativeAPIRouter())
|
||||||
return a.Run(ctx, conf.Server.Address, conf.Server.Port, conf.Server.TLSCert, conf.Server.TLSKey)
|
return a.Run(ctx, conf.Server.Address, conf.Server.Port, conf.Server.TLSCert, conf.Server.TLSKey)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -45,7 +45,7 @@ func CreateNativeAPIRouter() *nativeapi.Router {
|
||||||
return router
|
return router
|
||||||
}
|
}
|
||||||
|
|
||||||
func CreateAuraAPIRouter() *api.Router {
|
func CreateNewNativeAPIRouter() *api.Router {
|
||||||
sqlDB := db.Db()
|
sqlDB := db.Db()
|
||||||
dataStore := persistence.New(sqlDB)
|
dataStore := persistence.New(sqlDB)
|
||||||
router := api.New(dataStore)
|
router := api.New(dataStore)
|
||||||
|
|
|
@ -48,7 +48,7 @@ func CreateNativeAPIRouter() *nativeapi.Router {
|
||||||
))
|
))
|
||||||
}
|
}
|
||||||
|
|
||||||
func CreateAuraAPIRouter() *api.Router {
|
func CreateNewNativeAPIRouter() *api.Router {
|
||||||
panic(wire.Build(
|
panic(wire.Build(
|
||||||
allProviders,
|
allProviders,
|
||||||
))
|
))
|
||||||
|
|
|
@ -76,7 +76,7 @@ func toArtistRelationship(id string, artist ArtistRole) TrackArtistRelationship
|
||||||
Type: ResourceTypeArtist,
|
Type: ResourceTypeArtist,
|
||||||
Id: id,
|
Id: id,
|
||||||
},
|
},
|
||||||
Meta: struct{ Role ArtistRole }{Role: artist},
|
Meta: ArtistMetaObject{Role: artist},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue