forked from StellarSplit/StellarSplit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmulti-currency.module.ts
More file actions
33 lines (32 loc) · 1003 Bytes
/
Copy pathmulti-currency.module.ts
File metadata and controls
33 lines (32 loc) · 1003 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import { Module } from '@nestjs/common';
import { TypeOrmModule } from '@nestjs/typeorm';
import { MultiCurrencyService } from './multi-currency.service';
import { ExchangeRateTrackerService } from './exchange-rate-tracker.service';
import { PathPaymentService } from './path-payment.service';
import { MultiCurrencyPayment } from './entities/multi-currency-payment.entity';
import { Payment } from '../entities/payment.entity';
import { Split } from '../entities/split.entity';
import { Participant } from '../entities/participant.entity';
import { StellarModule } from '../stellar/stellar.module';
@Module({
imports: [
TypeOrmModule.forFeature([
MultiCurrencyPayment,
Payment,
Split,
Participant,
]),
StellarModule,
],
providers: [
MultiCurrencyService,
ExchangeRateTrackerService,
PathPaymentService,
],
exports: [
MultiCurrencyService,
ExchangeRateTrackerService,
PathPaymentService,
],
})
export class MultiCurrencyModule {}