2025-02-25 13:18:33 +05:30
|
|
|
import { Module } from '@nestjs/common';
|
|
|
|
|
import { OracleService } from './oracle.service';
|
|
|
|
|
import { OracleController } from './oracle.controller';
|
|
|
|
|
import { DbModule } from 'src/db/db.module';
|
2025-03-01 11:18:38 +05:30
|
|
|
import { ParamTableService } from './paramTable.service';
|
2025-03-03 12:16:48 +05:30
|
|
|
import { ManageFeeService } from './manageFee.service';
|
2025-02-25 13:18:33 +05:30
|
|
|
|
|
|
|
|
@Module({
|
|
|
|
|
imports:[DbModule],
|
2025-03-03 12:16:48 +05:30
|
|
|
providers: [OracleService,ParamTableService,ManageFeeService],
|
2025-02-25 13:18:33 +05:30
|
|
|
controllers: [OracleController],
|
2025-03-03 12:16:48 +05:30
|
|
|
exports:[OracleService,ParamTableService,ManageFeeService]
|
2025-02-25 13:18:33 +05:30
|
|
|
})
|
|
|
|
|
export class OracleModule {}
|