Files
keyvault/api/src/modules/realtime/sse/sse.module.ts
Bastian Wagner b3fd7fbf03 Unit tests
2026-03-09 10:54:50 +01:00

17 lines
675 B
TypeScript

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 {}