Files
automatisch/packages/backend/src/graphql/queries/get-payment-plans.ee.ts
2023-03-21 00:50:33 +03:00

11 lines
236 B
TypeScript

import appConfig from '../../config/app';
import Billing from '../../helpers/billing/index.ee';
const getPaymentPlans = async () => {
if (!appConfig.isCloud) return;
return Billing.paddlePlans;
};
export default getPaymentPlans;