mirror of
https://github.com/docmost/docmost.git
synced 2026-05-07 14:43:06 +08:00
11 lines
336 B
TypeScript
11 lines
336 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { WsGateway } from './ws.gateway';
|
|
import { TokenModule } from '../core/auth/token.module';
|
|
import { ExcalidrawCollabService } from './services/excalidraw-collab.service';
|
|
|
|
@Module({
|
|
imports: [TokenModule],
|
|
providers: [WsGateway, ExcalidrawCollabService],
|
|
})
|
|
export class WsModule {}
|