UNPKG

dbgate-api

Version:

Allows run DbGate data-manipulation scripts.

24 lines (20 loc) 288 B
function checkLicense() { return { status: 'ok', type: 'community', }; } function checkLicenseKey(key) { return { status: 'ok', type: 'community', }; } function isProApp() { return false; } module.exports = { checkLicense, checkLicenseKey, isProApp, };