File size: 153 Bytes
185f702
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
/**
 * Config class
 */
class Config {
  /**
   * Get the API URL
   * @return {string}
   */
  getApiUrl() {
    return 'https://example.com/api';
  }
}