mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
32 lines
519 B
JavaScript
32 lines
519 B
JavaScript
'use strict';
|
|
|
|
const Promise = require('bluebird');
|
|
|
|
class JawsPlugin {
|
|
|
|
/**
|
|
*
|
|
* @param Jaws class object
|
|
* @param config object
|
|
*/
|
|
constructor(Jaws, config) {
|
|
this.Jaws = Jaws;
|
|
this.config = config;
|
|
}
|
|
|
|
/**
|
|
* @returns {Promise} upon completion of all registrations
|
|
*/
|
|
registerActions() {
|
|
return Promise.resolve();
|
|
}
|
|
|
|
/**
|
|
* @returns {Promise} upon completion of all registrations
|
|
*/
|
|
registerHooks() {
|
|
return Promise.resolve();
|
|
}
|
|
}
|
|
|
|
module.exports = JawsPlugin; |