feat(guild-realtime): add websocket gateway with api-key auth and channel rooms
This commit is contained in:
9
Fabric.Backend.Guild/src/realtime/realtime.module.ts
Normal file
9
Fabric.Backend.Guild/src/realtime/realtime.module.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import { Global, Module } from '@nestjs/common';
|
||||
import { RealtimeGateway } from './realtime.gateway';
|
||||
|
||||
@Global()
|
||||
@Module({
|
||||
providers: [RealtimeGateway],
|
||||
exports: [RealtimeGateway],
|
||||
})
|
||||
export class RealtimeModule {}
|
||||
Reference in New Issue
Block a user