Change API name

This commit is contained in:
Deluan 2023-05-22 11:46:31 -04:00 committed by Deluan
parent 2650e4c27c
commit 09e52eba87
5 changed files with 5 additions and 5 deletions

View file

@ -49,7 +49,7 @@ wire: check_go_env ##@Development Update Dependency Injection
go run github.com/google/wire/cmd/wire@latest ./...
.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/...
.PHONY: api

View file

@ -103,7 +103,7 @@ func startServer(ctx context.Context) func() error {
if strings.HasPrefix(conf.Server.UILoginBackgroundURL, "/") {
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)
}
}

View file

@ -45,7 +45,7 @@ func CreateNativeAPIRouter() *nativeapi.Router {
return router
}
func CreateAuraAPIRouter() *api.Router {
func CreateNewNativeAPIRouter() *api.Router {
sqlDB := db.Db()
dataStore := persistence.New(sqlDB)
router := api.New(dataStore)

View file

@ -48,7 +48,7 @@ func CreateNativeAPIRouter() *nativeapi.Router {
))
}
func CreateAuraAPIRouter() *api.Router {
func CreateNewNativeAPIRouter() *api.Router {
panic(wire.Build(
allProviders,
))

View file

@ -76,7 +76,7 @@ func toArtistRelationship(id string, artist ArtistRole) TrackArtistRelationship
Type: ResourceTypeArtist,
Id: id,
},
Meta: struct{ Role ArtistRole }{Role: artist},
Meta: ArtistMetaObject{Role: artist},
}
}