streamflix-api / src /modules /super-admin /super-admin.module.ts
Akshar2325
✨ feat(super-admin-2fa): introduce two-factor authentication
add3ead
Raw
History Blame
283 Bytes
import { Module } from '@nestjs/common';
import { SuperAdminAuthModule } from './auth/auth.module';
import { TwoFactorAuthModule } from './two-factor-auth/two-factor-auth.module';
@Module({
imports: [SuperAdminAuthModule, TwoFactorAuthModule],
})
export class SuperAdminModule {}