Merge remote-tracking branch 'origin/dev' into auth-uploads

This commit is contained in:
grngxd 2025-06-08 19:00:09 +01:00
commit 036d20561e
11 changed files with 596 additions and 581 deletions

View file

@ -1,12 +1,12 @@
package api
import (
"stereo.cat/backend/internal/api/routes"
"stereo.cat/backend/internal/types"
)
func Register(cfg *types.StereoConfig) {
api := cfg.Router.Group("/api")
routes.RegisterFileRoutes(cfg, api)
routes.RegisterAuthRoutes(cfg, api)
}
package api
import (
"stereo.cat/backend/internal/api/routes"
"stereo.cat/backend/internal/types"
)
func Register(cfg *types.StereoConfig) {
api := cfg.Router.Group("/api")
routes.RegisterFileRoutes(cfg, api)
routes.RegisterAuthRoutes(cfg, api)
}