mirror of
https://github.com/Shadowfita/docmost.git
synced 2025-11-20 19:51:02 +10:00
8 lines
148 B
TypeScript
8 lines
148 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { WsGateway } from './ws.gateway';
|
|
|
|
@Module({
|
|
providers: [WsGateway],
|
|
})
|
|
export class WsModule {}
|