targo-backend/src/time-and-attendance/bank-codes/bank-codes.module.ts
2026-02-27 10:09:24 -05:00

16 lines
491 B
TypeScript

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 {}