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