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