14 lines
598 B
Dart
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";
|
|
}
|