mirror of
https://github.com/docmost/docmost.git
synced 2026-05-11 00:44:07 +08:00
eefe63d1cd
* fix comments on the frontend * move jwt token service to its own module * other fixes and updates
10 lines
231 B
TypeScript
10 lines
231 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { WsGateway } from './ws.gateway';
|
|
import { TokenModule } from '../core/auth/token.module';
|
|
|
|
@Module({
|
|
imports: [TokenModule],
|
|
providers: [WsGateway],
|
|
})
|
|
export class WsModule {}
|