import { Module } from '@nestjs/common'; import { TypeOrmModule } from '@nestjs/typeorm'; import { AuditModule } from '../audit/audit.module'; import { AuthModule } from '../auth/auth.module'; import { LldapModule } from '../lldap/lldap.module'; import { MailModule } from '../mail/mail.module'; import { PasswordResetToken } from './password-reset-token.entity'; import { PasswordController } from './password.controller'; import { PasswordService } from './password.service'; @Module({ imports: [TypeOrmModule.forFeature([PasswordResetToken]), AuthModule, LldapModule, MailModule, AuditModule], controllers: [PasswordController], providers: [PasswordService], }) export class PasswordModule {}