mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-19 06:06:01 +00:00
24 lines
288 B
JavaScript
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,
|
|
};
|