mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 23:34:24 +01:00
9 lines
345 B
Dart
9 lines
345 B
Dart
abstract final class Urls {
|
|
static const cdnBase = 'https://cdn.lpkt.cn/serverbox';
|
|
static const updateCfg = '$cdnBase/update2.json';
|
|
static const myGithub = 'https://github.com/lollipopkit';
|
|
static const thisRepo = '$myGithub/flutter_server_box';
|
|
static const appHelp = '$thisRepo#-help';
|
|
static const appWiki = '$thisRepo/wiki';
|
|
}
|