Merge pull request #16467 from mozilla/FXA-8931

feat(payments-paypal): Create PayPalService
This commit is contained in:
Lisa Chan 2024-02-22 17:09:56 -05:00 коммит произвёл GitHub
Родитель 1938635ec4 e9ecacc892
Коммит a123a0886d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
2 изменённых файлов: 12 добавлений и 0 удалений

Просмотреть файл

@ -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';

Просмотреть файл

@ -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) {}
}