34 lines
1.2 KiB
TypeScript
34 lines
1.2 KiB
TypeScript
import { Global, Module } from '@nestjs/common';
|
|
import { DbModule } from 'src/db/db.module';
|
|
import { ManageHoldersModule } from './manage-holders/manage-holders.module';
|
|
import { HomePageModule } from './home-page/home-page.module';
|
|
import { UscibManagedSpModule } from './uscib-managed-sp/uscib-managed-sp.module';
|
|
import { ParamTableModule } from './param-table/param-table.module';
|
|
import { ManageFeeModule } from './manage-fee/manage-fee.module';
|
|
import { ManageClientsModule } from './manage-clients/manage-clients.module';
|
|
import { UserMaintenanceModule } from './user-maintenance/user-maintenance.module';
|
|
import { CarnetApplicationModule } from './carnet-application/carnet-application.module';
|
|
import { OracleService } from './oracle.service';
|
|
import { AuthModule } from 'src/auth/auth.module';
|
|
import { PaypalModule } from 'src/paypal/paypal.module';
|
|
|
|
@Global()
|
|
@Module({
|
|
imports: [
|
|
DbModule,
|
|
PaypalModule,
|
|
CarnetApplicationModule,
|
|
UserMaintenanceModule,
|
|
HomePageModule,
|
|
UscibManagedSpModule,
|
|
ParamTableModule,
|
|
ManageFeeModule,
|
|
ManageHoldersModule,
|
|
ManageClientsModule,
|
|
],
|
|
providers: [OracleService],
|
|
controllers: [],
|
|
exports: [OracleService, UserMaintenanceModule],
|
|
})
|
|
export class OracleModule { }
|