mirror of
https://github.com/serverless/serverless.git
synced 2026-01-25 15:07:39 +00:00
8 lines
122 B
JavaScript
8 lines
122 B
JavaScript
'use strict';
|
|
|
|
function getLocalRootUrl(port) {
|
|
return `http://localhost:${port}`;
|
|
}
|
|
|
|
module.exports = getLocalRootUrl;
|