blob: fe681af5c42a446944ce130d6cb2fcd2d11bde95 (
plain)
1
2
3
4
5
6
7
8
|
// The file including this must also include ../constants.sub.js to pick up the
// necessary constants.
const {BASEURL, ECHOURL} = (() => {
const BASEURL = SCHEME_DOMAIN_PORT;
const ECHOURL = `${BASEURL}/echo`;
return {BASEURL, ECHOURL};
})();
|