feat(CC-056): add SearchModule
This commit is contained in:
parent
67cfd7cb12
commit
0a5ae5d483
1 changed files with 5 additions and 0 deletions
5
src/search/search.module.ts
Normal file
5
src/search/search.module.ts
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
import { Module } from '@nestjs/common';
|
||||
import { SearchController } from './search.controller';
|
||||
|
||||
@Module({ controllers: [SearchController] })
|
||||
export class SearchModule {}
|
||||
Loading…
Reference in a new issue