import { Module } from '@nestjs/common'; import { SevaController } from './seva.controller'; import { SevaService } from './seva.service'; import { AuthModule } from '../auth/auth.module'; import { GamificationModule } from '../gamification/gamification.module'; @Module({ imports: [AuthModule, GamificationModule], controllers: [SevaController], providers: [SevaService], exports: [SevaService], }) export class SevaModule {}