mirror of
https://github.com/docmost/docmost.git
synced 2026-05-09 07:43:06 +08:00
05b3c65b0f
* feat: notifications * feat: watchers * improvements * handle page move for watchers * make watchers non-blocking * more
12 lines
291 B
TypeScript
12 lines
291 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { WatcherService } from './watcher.service';
|
|
import { CaslModule } from '../casl/casl.module';
|
|
|
|
@Module({
|
|
imports: [CaslModule],
|
|
controllers: [],
|
|
providers: [WatcherService],
|
|
exports: [WatcherService],
|
|
})
|
|
export class WatcherModule {}
|