mirror of
https://mirror.ghproxy.com/https://github.com/StarCitizenToolBox/app.git
synced 2024-12-24 00:03:45 +08:00
26 lines
993 B
Dart
26 lines
993 B
Dart
|
class URLConf {
|
||
|
static const String giteaAttachmentsUrl =
|
||
|
"https://git.sctoolbox.sccsgo.com/SCToolBox/Release";
|
||
|
static const String gitlabLocalizationUrl =
|
||
|
"https://git.sctoolbox.sccsgo.com/SCToolBox/LocalizationData";
|
||
|
static const String apiRepoPath =
|
||
|
"https://git.sctoolbox.sccsgo.com/SCToolBox/api/raw/branch/main/";
|
||
|
|
||
|
static const String gitlabApiPath =
|
||
|
"https://git.sctoolbox.sccsgo.com/api/v1/";
|
||
|
|
||
|
static const String webTranslateHomeUrl =
|
||
|
"https://git.sctoolbox.sccsgo.com/SCToolBox/ScWeb_Chinese_Translate/raw/branch/main/json/locales";
|
||
|
|
||
|
static const String xkeycApiUrl = "https://sctoolbox.xkeyc.com";
|
||
|
|
||
|
static const _rssHomeUrl = "https://rss.sctoolbox.sccsgo.com";
|
||
|
|
||
|
static const rssVideoUrl =
|
||
|
"$_rssHomeUrl/bilibili/user/channel/27976358/290653";
|
||
|
|
||
|
static const rssTextUrl1 = "$_rssHomeUrl/bilibili/user/article/40102960";
|
||
|
static const rssTextUrl2 =
|
||
|
"$_rssHomeUrl/baidu/tieba/user/%E7%81%AC%E7%81%ACG%E7%81%AC%E7%81%AC&";
|
||
|
}
|