mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 16:06:01 +00:00
13 lines
142 B
JavaScript
13 lines
142 B
JavaScript
function isProApp() {
|
|
return false;
|
|
}
|
|
|
|
function checkLicense(license) {
|
|
return null;
|
|
}
|
|
|
|
module.exports = {
|
|
isProApp,
|
|
checkLicense,
|
|
};
|