mirror of
https://mirror.ghproxy.com/https://github.com/StarCitizenToolBox/app.git
synced 2024-12-24 03:33:43 +08:00
10 lines
389 B
Dart
10 lines
389 B
Dart
class ConstConf {
|
|
static const String appVersion = "2.12.3";
|
|
static const int appVersionCode = 57;
|
|
static const String appVersionDate = "2024-10-07";
|
|
static const gameChannels = ["LIVE", "PTU", "EPTU", "TECH-PREVIEW", "HOTFIX"];
|
|
static const isMSE =
|
|
String.fromEnvironment("MSE", defaultValue: "false") == "true";
|
|
static const dohAddress = "https://223.6.6.6/resolve";
|
|
}
|