import { Module } from '@nestjs/common';
import { OtpService } from './otp.service';
import { OtpController } from './otp.controller';
import { CryptoService } from 'src/qr-encrpyt/qr-encrpyt.service';

@Module({
  controllers: [OtpController],
  providers: [OtpService, CryptoService],
})
export class OtpModule {}
