summaryrefslogtreecommitdiffstats
path: root/common/scrape.go
blob: 4ffbb8680be37ff34d3b05bbf0c7ebd2e4ed03df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package common

import (
	"time"
)

type ScrapeResult struct {
	Hash      string
	TorrentID uint32
	Seeders   uint32
	Leechers  uint32
	Completed uint32
	Date      time.Time
}