* replace TypeORM with Kysely query builder * refactor migrations * other changes and fixes
9 lines
255 B
TypeScript
9 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 {}
|