feat: migrate system to api v1

This commit is contained in:
Steven
2023-06-20 17:15:12 +08:00
parent 96704162d8
commit 24d42694c8
6 changed files with 31 additions and 35 deletions

View File

@ -20,6 +20,7 @@ func NewAPIV1Service(profile *profile.Profile, store *store.Store) *APIV1Service
}
func (s *APIV1Service) Start(apiV1Group *echo.Group, secret string) {
s.registerSystemRoutes(apiV1Group)
s.registerAuthRoutes(apiV1Group, secret)
s.registerUserRoutes(apiV1Group)
s.registerWorkspaceRoutes(apiV1Group)