-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
35 lines (34 loc) · 1.25 KB
/
index.ts
File metadata and controls
35 lines (34 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import { AuthController } from './AuthController';
import { AvailabilityController } from './AvailabilityController';
import { EventController } from './EventController';
import { FeedbackController } from './FeedbackController';
import { ImageController } from './ImageController';
import { PostController } from './PostController';
import { RequestController } from './RequestController';
import { UserController } from './UserController';
import { UserReviewController } from './UserReviewController';
import { NotifController } from './NotifController'
import { ReportController } from './ReportController';
import { TransactionController } from './TransactionController';
import { TransactionReviewController } from './TransactionReviewController';
import { ChatController } from './ChatController';
import { AuthTokenController } from './AuthToken';
import { SearchController } from './SearchController';
export const controllers = [
AuthController,
AuthTokenController,
AvailabilityController,
ChatController,
EventController,
FeedbackController,
ImageController,
NotifController,
PostController,
RequestController,
ReportController,
SearchController,
UserController,
UserReviewController,
TransactionController,
TransactionReviewController,
];