OpenContacts/lib/config.dart

9 lines
334 B
Dart
Raw Normal View History

2023-04-29 13:18:46 -04:00
class Config {
2023-09-29 03:51:46 -04:00
static const String apiBaseUrl = "https://api.resonite.com";
static const String skyfrostAssetsUrl = "https://assets.resonite.com";
static const String resoniteHubUrl = "$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
}