feat(CC-056): add SearchModule

This commit is contained in:
admin-valentin 2026-08-01 20:55:51 +00:00
parent 67cfd7cb12
commit 0a5ae5d483

View file

@ -0,0 +1,5 @@
import { Module } from '@nestjs/common';
import { SearchController } from './search.controller';
@Module({ controllers: [SearchController] })
export class SearchModule {}