node build fixed

This commit is contained in:
ra_ma
2025-09-20 14:08:38 +01:00
parent c6ebbe069d
commit 3d298fa434
1516 changed files with 535727 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
package qbittorrent_model
type Peer struct {
Client string `json:"client"`
Connection string `json:"connection"`
Country string `json:"country"`
CountryCode string `json:"country_code"`
DLSpeed int `json:"dlSpeed"`
Downloaded int `json:"downloaded"`
Files string `json:"files"`
Flags string `json:"flags"`
FlagsDescription string `json:"flags_desc"`
IP string `json:"ip"`
Port int `json:"port"`
Progress float64 `json:"progress"`
Relevance int `json:"relevance"`
ULSpeed int `json:"up_speed"`
Uploaded int `json:"uploaded"`
}