mirror of
https://github.com/serverless/serverless.git
synced 2026-01-25 15:07:39 +00:00
19 lines
273 B
JavaScript
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;
|