Files
automatisch/packages/backend/src/graphql/queries/get-license.ee.ts
2023-02-17 22:42:56 +01:00

12 lines
214 B
TypeScript

import checkLicense from '../../helpers/check-license.ee';
const getLicense = async () => {
const license = await checkLicense();
return {
type: license ? 'ee' : 'ce',
};
};
export default getLicense;