mirror of
https://github.com/docmost/docmost.git
synced 2026-05-09 07:43:06 +08:00
b91c3ede1e
* fix comments * fix page history * fix aside width on smaller screens
12 lines
306 B
TypeScript
12 lines
306 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { CommentService } from './comment.service';
|
|
import { CommentController } from './comment.controller';
|
|
|
|
@Module({
|
|
imports: [],
|
|
controllers: [CommentController],
|
|
providers: [CommentService],
|
|
exports: [CommentService],
|
|
})
|
|
export class CommentModule {}
|