mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-26 12:41:04 +00:00
15 lines
535 B
TypeScript
15 lines
535 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { HttpModule } from '@nestjs/axios';
|
|
import { CurrenciesController } from './currencies.controller';
|
|
import { CurrenciesService } from './currencies.service';
|
|
import { CurrencyModule } from '../currency/currency.module';
|
|
import { PrismaModule } from '../../common/prisma.module';
|
|
|
|
@Module({
|
|
imports: [HttpModule, PrismaModule, CurrencyModule],
|
|
controllers: [CurrenciesController],
|
|
providers: [CurrenciesService],
|
|
exports: [CurrenciesService],
|
|
})
|
|
export class CurrenciesModule {}
|