@@ -57,6 +57,7 @@ type Node struct {
CountryCode string `json:"countryCode"`
CountryName string `json:"countryName"`
Ip string `json:"ip"`
+ Icon string `json:"icon"`
}
type ConfigResponse struct {
@@ -68,6 +68,7 @@ func List(c *gin.Context) {
Ip: node.Ip,
CountryCode: node.CountryCode,
CountryName: node.CountryName,
+ Icon: "https://img.zcool.cn/community/010a5a57dbc2140000018c1b0a9b5f.png",
})