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
2023-10-03 12:20:02 -04:00
static const String latestCompatHash = "YPDxN4N9fu7ZgV+Nr/AHQw==";
2023-04-29 13:18:46 -04:00
}