serverless/lib/commands/GlobalCmd.js
2015-10-11 22:21:56 -05:00

19 lines
261 B
JavaScript

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