12 lines
531 B
TypeScript
12 lines
531 B
TypeScript
|
|
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 { }
|