新增节点

This commit is contained in:
2025-09-28 15:07:56 +08:00
parent e76f0fefb4
commit 27bc42d872
4 changed files with 41 additions and 15 deletions

View File

@@ -69,6 +69,14 @@ pub fn get_all_nodes() -> Vec<PackycodeNode> {
response_time: None,
available: None,
},
PackycodeNode {
name: "公交车 US-CN2".to_string(),
url: "https://api-us-cn2.packycode.com".to_string(),
node_type: NodeType::Direct,
description: "美国 CN2 线路(公交车)".to_string(),
response_time: None,
available: None,
},
// 滴滴车节点 (Taxi Service)
PackycodeNode {
name: "滴滴车默认节点".to_string(),
@@ -102,6 +110,14 @@ pub fn get_all_nodes() -> Vec<PackycodeNode> {
response_time: None,
available: None,
},
PackycodeNode {
name: "滴滴车 US-CN2".to_string(),
url: "https://share-api-us-cn2.packycode.com".to_string(),
node_type: NodeType::Direct,
description: "美国 CN2 线路(滴滴车)".to_string(),
response_time: None,
available: None,
},
]
}