kenken999's picture
sd
185f702
raw
history blame
153 Bytes
/**
* Config class
*/
class Config {
/**
* Get the API URL
* @return {string}
*/
getApiUrl() {
return 'https://example.com/api';
}
}