File size: 259 Bytes
185f702
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
/**
 * 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');
  }
}