sugo-constants
Version:
Constant variables for SUGOS
17 lines (15 loc) • 311 B
JavaScript
/**
* Constants of url
* @namespace HubUrl
*/
module.exports = Object.assign(exports, {
/** URL for actors */
ACTOR_URL: '/actors',
/** URL for callers */
CALLER_URL: '/callers',
/** URL for observers */
OBSERVER_URL: '/observers',
/** URL for other hubs */
HUB_URL: '/hubs'
})