mirror of
https://github.com/serverless/serverless.git
synced 2026-01-25 15:07:39 +00:00
25 lines
338 B
JavaScript
25 lines
338 B
JavaScript
'use strict';
|
|
|
|
const JAWS = require('./index2.js');
|
|
|
|
JAWS.config({
|
|
projectRootPath: ''
|
|
});
|
|
|
|
|
|
var plugin = function() {
|
|
|
|
console.log(this);
|
|
|
|
//let action = function*(next) {
|
|
// console.log('herheehrherhehr');
|
|
// yield next;
|
|
//}
|
|
//this.action('ProjectCreate', action);
|
|
|
|
};
|
|
|
|
|
|
|
|
JAWS.plugin(plugin, {});
|
|
//JAWS.projectCreate();
|