Spaces:
Running
on
Zero
Running
on
Zero
/** | |
* 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'); | |
} | |
} |