feat: add api client for activity controller

This commit is contained in:
Innei
2023-08-06 19:24:00 +08:00
parent 03ca5c6592
commit 44ab9dc273
6 changed files with 66 additions and 1 deletions

View File

@@ -1,3 +1,4 @@
import { ActivityController } from './activity'
import { AggregateController } from './aggregate'
import { CategoryController } from './category'
import { CommentController } from './comment'
@@ -20,6 +21,7 @@ import { TopicController } from './topic'
import { UserController } from './user'
export const allControllers = [
ActivityController,
AggregateController,
CategoryController,
CommentController,
@@ -39,6 +41,7 @@ export const allControllers = [
]
export const allContollerNames = [
'activity',
'aggregate',
'category',
'comment',
@@ -63,6 +66,7 @@ export const allContollerNames = [
] as const
export {
ActivityController,
AggregateController,
CategoryController,
CommentController,