model/torrent.go
2022-08-03 23:43:16 +02:00

17 lines
216 B
Go

package model
import "time"
type Torrent struct {
ID TorrentID
Title string
Link string
Time time.Time
Seeders int
Leechers int
Downloads int
Trusted bool
}
type TorrentID string