feat(api): add SearchModule with GET /search endpoint backed by Meilisearch

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-28 00:28:13 +05:30
parent 6f18433c67
commit 8ad5f737bd
8 changed files with 223 additions and 0 deletions
@@ -0,0 +1,11 @@
import { Module } from '@nestjs/common';
import { ConfigModule } from '@nestjs/config';
import { SearchController } from './search.controller';
import { SearchService } from './search.service';
@Module({
imports: [ConfigModule],
controllers: [SearchController],
providers: [SearchService],
})
export class SearchModule {}