mirror of
https://github.com/simon987/music-graph-ui.git
synced 2025-04-20 10:26:41 +00:00
11 lines
257 B
JavaScript
11 lines
257 B
JavaScript
const API_URL = '//app.example.com/api';
|
|
const API_VERSION = '2.0';
|
|
const BASE_URL = `${API_URL}/${API_VERSION}`;
|
|
|
|
exports.getURL = url => BASE_URL + url;
|
|
|
|
module.exports = {
|
|
appName: 'Some App Specific Mode',
|
|
otherAPI: exports.getURL('/something/')
|
|
};
|