import { Module } from "@nestjs/common";
import { ProfileService } from "./profile.service";
import { ProfileController } from "./profile.controller";
import { CryptoService } from "src/qr-encrpyt/qr-encrpyt.service";

@Module({
  controllers: [ProfileController],
  providers: [ProfileService, CryptoService],
})
export class ProfileModule {}
