UNPKG

cloudcms-cli

Version:
28 lines (24 loc) 622 B
var helper = require("../../../helper"); var AbstractCommand = require("../../abstract"); class PlatformInfoCommand extends AbstractCommand { constructor() { super({ "group": "platform", "name": "info", "description": "Returns information about the current tenant platform", "schema": { "properties": [] } }); } handle(options, callback) { // call workhorse function helper.getPlatformInfo(function(err) { callback(err); }); } } module.exports = PlatformInfoCommand;