mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
8 lines
122 B
JavaScript
8 lines
122 B
JavaScript
'use strict';
|
|
|
|
function getLocalRootUrl(port) {
|
|
return `http://localhost:${port}`;
|
|
}
|
|
|
|
module.exports = getLocalRootUrl;
|