11 lines
236 B
TypeScript
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;
|