mirror of
https://github.com/docmost/docmost.git
synced 2026-05-13 02:34:05 +08:00
60848ea903
* feat: MCP * sync * sync
11 lines
283 B
TypeScript
11 lines
283 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { SearchController } from './search.controller';
|
|
import { SearchService } from './search.service';
|
|
|
|
@Module({
|
|
controllers: [SearchController],
|
|
providers: [SearchService],
|
|
exports: [SearchService],
|
|
})
|
|
export class SearchModule {}
|