import { Module } from "@nestjs/common"; import { PrismaPostgresService } from "prisma/postgres/prisma-postgres.service"; import { BankCodesControllers } from "src/time-and-attendance/bank-codes/bank-codes.controller"; import { BankCodesService } from "src/time-and-attendance/bank-codes/bank-codes.service"; @Module({ controllers: [ BankCodesControllers ], providers: [ BankCodesService, PrismaPostgresService ], }) export class BankCodesModule {}