mirror of
https://github.com/wanghongenpin/proxypin.git
synced 2026-05-14 15:48:03 +08:00
12 lines
449 B
Dart
12 lines
449 B
Dart
abstract class Constants {
|
|
static const githubUrl = "https://github.com/wanghongenpin/proxypin";
|
|
static const githubReleasesApiUrl =
|
|
"https://api.github.com/repos/wanghongenpin/proxypin/releases";
|
|
static const githubLatestReleaseUrl =
|
|
"https://github.com/wanghongenpin/proxypin/releases/latest";
|
|
|
|
static const String ignoreReleaseVersionKey = "ignored_release_version";
|
|
}
|
|
|
|
const kAnimationDuration = Duration(milliseconds: 250);
|