Files
dbgate/packages/api/src/utility/checkLicense.js
SPRINX0\prochazka e379be0107 fix
2024-11-14 10:10:15 +01:00

24 lines
288 B
JavaScript

function checkLicense() {
return {
status: 'ok',
type: 'community',
};
}
function checkLicenseKey(key) {
return {
status: 'ok',
type: 'community',
};
}
function isProApp() {
return false;
}
module.exports = {
checkLicense,
checkLicenseKey,
isProApp,
};