2025-09-17 12:49:06 +05:30
|
|
|
import { Global, Module } from '@nestjs/common';
|
2025-09-17 10:18:44 +05:30
|
|
|
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';
|
|
|
|
|
|
2025-09-17 12:49:06 +05:30
|
|
|
@Global()
|
2025-09-17 10:18:44 +05:30
|
|
|
@Module({
|
|
|
|
|
imports: [DbModule, ParamTableModule, UscibManagedSpModule, UserMaintenanceModule, ManageFeeModule],
|
2025-09-17 12:49:06 +05:30
|
|
|
providers: [],
|
|
|
|
|
exports: [UserMaintenanceModule]
|
2025-09-17 10:18:44 +05:30
|
|
|
})
|
|
|
|
|
export class PgModule { }
|