mirror of
https://github.com/status-im/status-go.git
synced 2025-02-03 10:25:35 +00:00
12 lines
176 B
Go
12 lines
176 B
Go
package udp
|
|
|
|
type ScrapeRequest []InfoHash
|
|
|
|
type ScrapeResponse []ScrapeInfohashResult
|
|
|
|
type ScrapeInfohashResult struct {
|
|
Seeders int32
|
|
Completed int32
|
|
Leechers int32
|
|
}
|