diff --git a/src/search/search.module.ts b/src/search/search.module.ts new file mode 100644 index 0000000..b8ba9e9 --- /dev/null +++ b/src/search/search.module.ts @@ -0,0 +1,5 @@ +import { Module } from '@nestjs/common'; +import { SearchController } from './search.controller'; + +@Module({ controllers: [SearchController] }) +export class SearchModule {}