12 lines
214 B
TypeScript
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;
|