mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-22 15:24:55 +00:00
10 lines
309 B
TypeScript
10 lines
309 B
TypeScript
const IsBillingEnabled: boolean = process.env["BILLING_ENABLED"] === "true";
|
|
const BillingPublicKey: string = process.env["BILLING_PUBLIC_KEY"] || "";
|
|
const BillingPrivateKey: string = process.env["BILLING_PRIVATE_KEY"] || "";
|
|
|
|
export default {
|
|
IsBillingEnabled,
|
|
BillingPublicKey,
|
|
BillingPrivateKey,
|
|
};
|