dynamic-content-delivery/data/constants.js

11 lines
373 B
JavaScript
Raw Permalink Normal View History

2024-03-10 07:39:10 -05:00
const API_HOST = 'http://localhost';
const API_VERSION = 1;
const API_PORT = 3000;
const prepareUrl = (...urls) => `${API_HOST}:${API_PORT}/api/v${API_VERSION}/${urls.join('/')}`;
// Leave this unchanged, if you haven't modified anything in API route configuration.
const ROUTES = {
GET_RESOURCE: (id) => prepareUrl('resource', id),
STATUS: prepareUrl('status')
}