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