mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-09-08 00:45:41 +00:00
13 lines
384 B
TypeScript
13 lines
384 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { HttpModule } from '@nestjs/axios';
|
|
import { CurrenciesController } from './currencies.controller';
|
|
import { CurrenciesService } from './currencies.service';
|
|
|
|
@Module({
|
|
imports: [HttpModule],
|
|
controllers: [CurrenciesController],
|
|
providers: [CurrenciesService],
|
|
exports: [CurrenciesService],
|
|
})
|
|
export class CurrenciesModule {}
|