mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
14 lines
253 B
JavaScript
14 lines
253 B
JavaScript
'use strict';
|
|
|
|
const deployCore = require('./lib/deployCore');
|
|
|
|
class awsDeploy {
|
|
constructor(serverless, options) {
|
|
this.serverless = serverless;
|
|
this.options = options;
|
|
Object.assign(this, deployCore);
|
|
}
|
|
}
|
|
|
|
module.exports = awsDeploy;
|