feat: Introduce agent types module, replacing categories and verification modules, and updating agent-related DTOs, services, and Prisma schema.

This commit is contained in:
pradeepkumar
2026-01-20 12:16:01 +05:30
parent c04ca2bcef
commit 3df8ea067a
30 changed files with 345 additions and 1559 deletions

View File

@@ -0,0 +1,12 @@
import { Module } from '@nestjs/common';
import { AgentTypesController } from './agent-types.controller';
import { AgentTypesService } from './agent-types.service';
import { PrismaModule } from '../prisma';
@Module({
imports: [PrismaModule],
controllers: [AgentTypesController],
providers: [AgentTypesService],
exports: [AgentTypesService],
})
export class AgentTypesModule {}