kenken999's picture
sd
185f702
raw
history blame
259 Bytes
/**
* Config class for storing and retrieving configuration values
*/
class Config {
/**
* Get the API URL from the configuration
* @return {string}
*/
getApiUrl() {
return PropertiesService.getUserProperties().getProperty('API_URL');
}
}