Spaces:
Runtime error
Runtime error
File size: 283 Bytes
f3abb0d add3ead f3abb0d add3ead f3abb0d | 1 2 3 4 5 6 7 8 9 | 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 {}
|