зеркало из https://github.com/mozilla/fxa.git
Merge pull request #16467 from mozilla/FXA-8931
feat(payments-paypal): Create PayPalService
This commit is contained in:
Коммит
a123a0886d
|
@ -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) {}
|
||||
}
|
Загрузка…
Ссылка в новой задаче