mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
18 lines
243 B
JavaScript
18 lines
243 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* A command that is to be executed from within a JAWS project
|
|
*
|
|
* @type {GlobalCmd}
|
|
*/
|
|
var ProjectCmd = class ProjectCmd {
|
|
constructor(JAWS) {
|
|
this._JAWS = JAWS;
|
|
}
|
|
|
|
run() {
|
|
}
|
|
};
|
|
|
|
module.exports = ProjectCmd;
|