mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-27 22:30:55 +00:00
11 lines
288 B
TypeScript
11 lines
288 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { CurrencyService } from './currency.service';
|
|
import { PrismaModule } from '../../common/prisma.module';
|
|
|
|
@Module({
|
|
imports: [PrismaModule],
|
|
providers: [CurrencyService],
|
|
exports: [CurrencyService],
|
|
})
|
|
export class CurrencyModule {}
|