10 lines
577 B
TypeScript
10 lines
577 B
TypeScript
import 'reflect-metadata';
|
|
import AccountBillingInfoResolver from '@services/module-payments/functions/billingInfos/billingInfo.resolver';
|
|
import AccountPaymentMethodResolver from '@services/module-payments/functions/paymentMethods/pm.resolver';
|
|
import AccountPayoutAccountsResolver from '@services/module-payments/functions/payoutAccounts/pa.resolver';
|
|
|
|
export const PaymentAppEngineResolvers = [AccountBillingInfoResolver, AccountPaymentMethodResolver];
|
|
export const PaymentAdminEngineResolvers = [];
|
|
|
|
export const PayoutAppEngineResolvers = [AccountPayoutAccountsResolver];
|