mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-27 22:30:55 +00:00
15 lines
580 B
TypeScript
15 lines
580 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { HttpModule } from '@nestjs/axios';
|
|
import { FareEngineController, ConfigController } from './fare-engine.controller';
|
|
import { FareEngineService } from './fare-engine.service';
|
|
import { CurrencyController } from './currency.controller';
|
|
import { CurrencyModule } from '../currency/currency.module';
|
|
|
|
@Module({
|
|
imports: [HttpModule, CurrencyModule],
|
|
controllers: [FareEngineController, CurrencyController, ConfigController],
|
|
providers: [FareEngineService],
|
|
exports: [FareEngineService],
|
|
})
|
|
export class FareEngineModule {}
|