package model import ( "fmt" "time" ) type Torrent struct { ID TorrentID Title string Link string Time time.Time Seeders int Leechers int Downloads int Trusted bool } type TorrentID string func (t Torrent) String() string { return fmt.Sprintf("id: %s | title: %s | seeders: %d | leechers: %d | downloads: %d | trusted: %t | upload time: %s", t.ID, t.Title, t.Seeders, t.Leechers, t.Downloads, t.Trusted, t.Time, ) }