Files
umbrix/lib/domain/constants.dart
problematicconsumer 429f1aadf0 Add update checking
2023-07-27 18:03:41 +03:30

14 lines
598 B
Dart

abstract class Constants {
static const localHost = '127.0.0.1';
static const clashFolderName = "clash";
static const delayTestUrl = "https://www.google.com";
static const configFileName = "config";
static const countryMMDBFileName = "Country";
static const githubUrl = "https://github.com/hiddify/hiddify-next";
static const githubReleasesApiUrl =
"https://api.github.com/repos/hiddify/hiddify-next/releases";
static const githubLatestReleaseUrl =
"https://github.com/hiddify/hiddify-next/releases/latest";
static const telegramChannelUrl = "https://t.me/hiddify";
}