feat: implement memo relation server (#1618)

This commit is contained in:
boojack
2023-05-01 16:09:41 +08:00
committed by GitHub
parent 6e6aae6649
commit b6564bcd77
9 changed files with 276 additions and 8 deletions

View File

@ -109,6 +109,7 @@ func NewServer(ctx context.Context, profile *profile.Profile) (*Server, error) {
s.registerStorageRoutes(apiGroup)
s.registerIdentityProviderRoutes(apiGroup)
s.registerOpenAIRoutes(apiGroup)
s.registerMemoRelationRoutes(apiGroup)
return s, nil
}