serverless/lib/utils/get-framework-id.js
2022-01-27 15:21:58 +01:00

11 lines
224 B
JavaScript

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