@interopio/desktop-cli
Version:
CLI tool for setting up, building and packaging io.Connect Desktop projects
23 lines • 880 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.licenseCommand = void 0;
const commander_1 = require("commander");
const logger_1 = require("../utils/logger");
const logger = logger_1.Logger.getInstance();
exports.licenseCommand = new commander_1.Command('license')
.description('License management commands');
exports.licenseCommand
.command('info')
.description('Display current license information')
.action(() => {
logger.info('License info command called');
console.log('License info - Phase 5 implementation required');
});
exports.licenseCommand
.command('validate')
.description('Validate the current license')
.action(() => {
logger.info('License validate command called');
console.log('License validation - Phase 5 implementation required');
});
//# sourceMappingURL=license.command.js.map