mirror of
https://github.com/docmost/docmost.git
synced 2026-05-07 06:23:06 +08:00
c18c9ae02b
* replace TypeORM with Kysely query builder * refactor migrations * other changes and fixes
10 lines
255 B
TypeScript
10 lines
255 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { SearchController } from './search.controller';
|
|
import { SearchService } from './search.service';
|
|
|
|
@Module({
|
|
controllers: [SearchController],
|
|
providers: [SearchService],
|
|
})
|
|
export class SearchModule {}
|