feat(guild-realtime): add websocket gateway with api-key auth and channel rooms

This commit is contained in:
nav
2026-05-12 12:13:19 +00:00
parent 5b28ad52bb
commit 01090273c6
6 changed files with 399 additions and 1 deletions

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