serverless/lib/commands/GlobalCmd.js
2015-10-12 15:36:33 -05:00

19 lines
276 B
JavaScript

'use strict';
//TODO: module create, run, project create
/**
* A command that can be run anywhere, not intended to be run in a JAWS project
*
* @type {GlobalCmd}
*/
const GlobalCmd = class GlobalCmd {
constructor() {
}
run() {
}
};
module.exports = GlobalCmd;