mirror of
https://github.com/docmost/docmost.git
synced 2026-05-07 22:53:08 +08:00
05b3c65b0f
* feat: notifications * feat: watchers * improvements * handle page move for watchers * make watchers non-blocking * more
13 lines
401 B
TypeScript
13 lines
401 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { GroupService } from './services/group.service';
|
|
import { GroupController } from './group.controller';
|
|
import { GroupUserService } from './services/group-user.service';
|
|
|
|
@Module({
|
|
imports: [],
|
|
controllers: [GroupController],
|
|
providers: [GroupService, GroupUserService],
|
|
exports: [GroupService, GroupUserService],
|
|
})
|
|
export class GroupModule {}
|