Enable premium features and add build guide

This commit is contained in:
dennii
2026-01-03 01:05:32 +11:00
parent 552c84f910
commit 8b9b5e05a7
6 changed files with 273 additions and 884 deletions

View File

@@ -1,19 +1,19 @@
function checkLicense() {
return {
status: 'ok',
type: 'community',
type: 'premium',
};
}
function checkLicenseKey(key) {
return {
status: 'ok',
type: 'community',
type: 'premium',
};
}
function isProApp() {
return false;
return true;
}
module.exports = {

View File

@@ -1,3 +1,3 @@
export function isProApp() {
return false;
return true;
}