your message
This commit is contained in:
@ -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 {}
|
||||
|
||||
Reference in New Issue
Block a user