serverless/lib/utils/get-framework-id.js
2024-04-14 17:25:27 -07:00

9 lines
202 B
JavaScript

import configUtils from '@serverless/utils/config';
function getFrameworkId() {
const config = configUtils.getConfig('getFrameworkId');
return config.frameworkId;
}
export default getFrameworkId;