OpenContacts/lib/config.dart

13 lines
684 B
Dart
Raw Normal View History

2023-04-29 13:18:46 -04:00
class Config {
2023-06-23 16:23:46 -04:00
static const String apiBaseUrl = "https://api.neos.com";
2023-04-30 03:01:59 -04:00
static const String legacyCloudUrl = "https://neoscloud.blob.core.windows.net/assets/";
static const String blobStorageUrl = "https://cloudxstorage.blob.core.windows.net/assets/";
static const String videoStorageUrl = "https://cloudx-video.azureedge.net/";
static const String neosCdnUrl = "https://cloudx.azureedge.net/assets/";
static const String neosAssetsUrl = "https://cloudxstorage.blob.core.windows.net/assets/";
static const String neosHubUrl = "$apiBaseUrl/hub";
2023-04-30 17:14:29 -04:00
static const int messageCacheValiditySeconds = 90;
2023-05-15 05:47:57 -04:00
static const String latestCompatHash = "jnnkdwkBqGv5+jlf1u/k7A==";
2023-04-29 13:18:46 -04:00
}