Files
dbgate/app/src/proTools.js
2024-08-13 16:29:07 +02:00

13 lines
142 B
JavaScript

function isProApp() {
return false;
}
function checkLicense(license) {
return null;
}
module.exports = {
isProApp,
checkLicense,
};