mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
11 lines
224 B
JavaScript
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;
|