import { Module } from '@nestjs/common'; import { SseController } from './sse.controller'; import { DatabaseModule } from 'src/shared/database/database.module'; import { SseTicketService } from './sse-ticket.service'; import { AuthModule } from 'src/modules/auth/auth.module'; import { SharedServiceModule } from 'src/shared/service/shared.service.module'; import { MailModule } from 'src/modules/mail/mail.module'; import { SseService } from './sse.service'; @Module({ controllers: [SseController], imports: [DatabaseModule, AuthModule, SharedServiceModule, MailModule], providers: [SseTicketService, SseService], exports: [SseService] }) export class SseModule {}