Files
proxypin/lib/ui/app_update/constants.dart
2025-04-13 23:10:50 +08:00

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);