serverless/lib/utils/getFrameworkId.js
2020-06-16 10:59:59 +02:00

11 lines
230 B
JavaScript

'use strict';
const configUtils = require('@serverless/utils/config');
function getFrameworkId() {
const config = configUtils.getGlobalConfig('getFrameworkId');
return config.frameworkId;
}
module.exports = getFrameworkId;