21 lines
775 B
TypeScript
21 lines
775 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { UserAccountController } from './controllers/user-account.controller';
|
|
import { AuthController } from './controllers/auth.controller';
|
|
import { ReferralsController } from './controllers/referrals.controller';
|
|
import { TotpController } from './controllers/totp.controller';
|
|
import { InternalController } from './controllers/internal.controller';
|
|
import { ApplicationModule } from '@/application/application.module';
|
|
import { InfrastructureModule } from '@/infrastructure/infrastructure.module';
|
|
|
|
@Module({
|
|
imports: [ApplicationModule, InfrastructureModule],
|
|
controllers: [
|
|
UserAccountController,
|
|
AuthController,
|
|
ReferralsController,
|
|
TotpController,
|
|
InternalController,
|
|
],
|
|
})
|
|
export class ApiModule {}
|