Skip to content
Snippets Groups Projects
contact.module.ts 345 B
Newer Older
  • Learn to ignore specific revisions
  • import { Module } from '@nestjs/common';
    import { MailerModule } from '../mailer/mailer.module';
    import { ContactController } from './contact.controller';
    import { ContactService } from './contact.service';
    
    @Module({
      imports: [MailerModule],
      controllers: [ContactController],
    
      providers: [ContactService],
    
    })
    export class ContactModule {}