import { Module } from "@nestjs/common";
import { SignUpService } from "./sign_up.service";
import { SignUpController } from "./sign_up.controller";
import { CryptoService } from "src/qr-encrpyt/qr-encrpyt.service";

@Module({
  controllers: [SignUpController],
  providers: [SignUpService,CryptoService],
})
export class SignUpModule {}
