17 lines
216 B
Go
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
|