your message

This commit is contained in:
root
2026-02-06 14:53:52 +00:00
parent c809d049fe
commit 3d488f22b7
47 changed files with 3127 additions and 425 deletions

View File

@ -1,10 +1,13 @@
import { Module } from '@nestjs/common';
import { SupportController } from './support.controller';
import { SupportService } from './support.service';
import { SupportGateway } from './support.gateway';
import { UsersModule } from '../users/users.module';
@Module({
imports: [UsersModule],
controllers: [SupportController],
providers: [SupportService],
providers: [SupportService, SupportGateway],
exports: [SupportService],
})
export class SupportModule {}