mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 23:34:24 +01:00
10 lines
404 B
Dart
10 lines
404 B
Dart
abstract final class Urls {
|
|
static const cdnBase = 'https://cdn.lolli.tech/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';
|
|
static const analysis = 'https://countly.lolli.tech';
|
|
}
|