@@ -23,7 +23,6 @@ async def get_fastest_raw_formats() -> list[str]:
23
23
formats : dict [str , str ] = {
24
24
"https://raw.githubusercontent.com/" : RAW_CONTENT_FORMAT ,
25
25
"https://ghproxy.cc/" : f"https://ghproxy.cc/{ RAW_CONTENT_FORMAT } " ,
26
- "https://mirror.ghproxy.com/" : f"https://mirror.ghproxy.com/{ RAW_CONTENT_FORMAT } " ,
27
26
"https://gh-proxy.com/" : f"https://gh-proxy.com/{ RAW_CONTENT_FORMAT } " ,
28
27
"https://cdn.jsdelivr.net/" : "https://cdn.jsdelivr.net/gh/{owner}/{repo}@{branch}/{path}" ,
29
28
}
@@ -36,7 +35,6 @@ async def get_fastest_archive_formats() -> list[str]:
36
35
formats : dict [str , str ] = {
37
36
"https://github.com/" : ARCHIVE_URL_FORMAT ,
38
37
"https://ghproxy.cc/" : f"https://ghproxy.cc/{ ARCHIVE_URL_FORMAT } " ,
39
- "https://mirror.ghproxy.com/" : f"https://mirror.ghproxy.com/{ ARCHIVE_URL_FORMAT } " ,
40
38
"https://gh-proxy.com/" : f"https://gh-proxy.com/{ ARCHIVE_URL_FORMAT } " ,
41
39
}
42
40
return await __get_fastest_formats (formats )
@@ -48,7 +46,6 @@ async def get_fastest_release_formats() -> list[str]:
48
46
formats : dict [str , str ] = {
49
47
"https://objects.githubusercontent.com/" : RELEASE_ASSETS_FORMAT ,
50
48
"https://ghproxy.cc/" : f"https://ghproxy.cc/{ RELEASE_ASSETS_FORMAT } " ,
51
- "https://mirror.ghproxy.com/" : f"https://mirror.ghproxy.com/{ RELEASE_ASSETS_FORMAT } " ,
52
49
"https://gh-proxy.com/" : f"https://gh-proxy.com/{ RELEASE_ASSETS_FORMAT } " ,
53
50
}
54
51
return await __get_fastest_formats (formats )
0 commit comments