import { Module } from '@nestjs/common';
import { SendOtpService } from './send-otp.service';
import { SendOtpController } from './send-otp.controller';

@Module({
  controllers: [SendOtpController],
  providers: [SendOtpService],
})
export class SendOtpModule {}
