Files
Fabric/Fabric.Backend.Guild/src/realtime/realtime.module.ts

10 lines
220 B
TypeScript

import { Global, Module } from '@nestjs/common';
import { RealtimeGateway } from './realtime.gateway';
@Global()
@Module({
providers: [RealtimeGateway],
exports: [RealtimeGateway],
})
export class RealtimeModule {}