From e9ecacc8923e5682f8849dd49063e5da979db115 Mon Sep 17 00:00:00 2001 From: Lisa Chan Date: Thu, 22 Feb 2024 15:14:38 -0500 Subject: [PATCH] feat(payments-paypal): Create PayPalService --- libs/payments/paypal/src/index.ts | 1 + libs/payments/paypal/src/lib/paypal.service.ts | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 libs/payments/paypal/src/lib/paypal.service.ts 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) {} +}