BE/src/pg/pg.module.ts

12 lines
531 B
TypeScript
Raw Normal View History

2025-09-17 10:18:44 +05:30
import { Module } from '@nestjs/common';
import { ParamTableModule } from './param-table/param-table.module';
import { DbModule } from 'src/db/db.module';
import { UscibManagedSpModule } from './uscib-managed-sp/uscib-managed-sp.module';
import { UserMaintenanceModule } from './user-maintenance/user-maintenance.module';
import { ManageFeeModule } from './manage-fee/manage-fee.module';
@Module({
imports: [DbModule, ParamTableModule, UscibManagedSpModule, UserMaintenanceModule, ManageFeeModule],
})
export class PgModule { }