Files
correos_api/src/app.module.ts
T

16 lines
383 B
TypeScript
Raw Normal View History

2025-02-27 12:41:56 -06:00
import { Module } from '@nestjs/common';
import { AppController } from './app.controller';
import { AppService } from './app.service';
import { MailModule } from './mail/mail.module';
import {ExcelModule} from './excel/excel.module'
2025-02-27 12:41:56 -06:00
@Module({
imports: [
MailModule,
ExcelModule,
],
2025-02-27 12:41:56 -06:00
controllers: [AppController],
providers: [AppService],
})
export class AppModule {}