mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
9 lines
202 B
JavaScript
9 lines
202 B
JavaScript
import configUtils from '@serverless/utils/config';
|
|
|
|
function getFrameworkId() {
|
|
const config = configUtils.getConfig('getFrameworkId');
|
|
return config.frameworkId;
|
|
}
|
|
|
|
export default getFrameworkId;
|