diff --git a/libs/payments/paypal/src/index.ts b/libs/payments/paypal/src/index.ts index 106a21755a..42fccfc842 100644 --- a/libs/payments/paypal/src/index.ts +++ b/libs/payments/paypal/src/index.ts @@ -5,5 +5,6 @@ export * from './lib/paypal.client'; export * from './lib/paypal.error'; export * from './lib/paypal.manager'; +export * from './lib/paypal.service'; export * from './lib/types'; export * from './lib/util'; diff --git a/libs/payments/paypal/src/lib/paypal.service.ts b/libs/payments/paypal/src/lib/paypal.service.ts new file mode 100644 index 0000000000..f749a403e4 --- /dev/null +++ b/libs/payments/paypal/src/lib/paypal.service.ts @@ -0,0 +1,11 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +import { Injectable } from '@nestjs/common'; +import { PayPalManager } from './paypal.manager'; + +@Injectable() +export class PayPalService { + constructor(private paypalManager: PayPalManager) {} +}