mirror of
https://github.com/docmost/docmost.git
synced 2026-05-07 14:43:06 +08:00
13 lines
405 B
TypeScript
13 lines
405 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { CommentService } from './comment.service';
|
|
import { CommentController } from './comment.controller';
|
|
import { CollaborationModule } from '../../collaboration/collaboration.module';
|
|
|
|
@Module({
|
|
imports: [CollaborationModule],
|
|
controllers: [CommentController],
|
|
providers: [CommentService],
|
|
exports: [CommentService],
|
|
})
|
|
export class CommentModule {}
|