serverless/lib/utils/get-framework-id.js
2024-05-29 11:51:04 -04:00

9 lines
198 B
JavaScript

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