serverless/lib/commands/GlobalCmd.js
2015-10-11 23:16:28 -07:00

19 lines
273 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}
*/
var GlobalCmd = class GlobalCmd {
constructor() {
}
run() {
}
}
module.exports = GlobalCmd;