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 {}