serverless/lib/utils/getFrameworkId.js
2017-05-25 20:37:45 -07:00

11 lines
214 B
JavaScript

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