mirror of
https://github.com/docmost/docmost.git
synced 2026-09-02 20:05:41 +08:00
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 {}
|