mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-15 07:27:33 +08:00
9 lines
183 B
JavaScript
9 lines
183 B
JavaScript
export default {
|
|
getLicense: () => {
|
|
return process.env.LICENSE;
|
|
},
|
|
getThirdPartyLicenses: () => {
|
|
return process.env.THIRD_PARTY_LICENSES || [];
|
|
}
|
|
};
|