mirror of
https://github.com/bitmagnet-io/bitmagnet.git
synced 2026-05-06 04:16:44 -04:00
25 lines
606 B
Go
25 lines
606 B
Go
package torznab
|
|
|
|
const (
|
|
AttrInfoHash = "infohash"
|
|
AttrMagnetURL = "magneturl"
|
|
// AttrCategory is the Category ID
|
|
AttrCategory = "category"
|
|
AttrSize = "size"
|
|
AttrPublishDate = "publishdate"
|
|
AttrSeeders = "seeders"
|
|
AttrLeechers = "leechers"
|
|
AttrPeers = "peers"
|
|
// AttrFiles is the number of files in the torrent
|
|
AttrFiles = "files"
|
|
AttrYear = "year"
|
|
AttrSeason = "season"
|
|
AttrEpisode = "episode"
|
|
// AttrVideo is the video codec
|
|
AttrVideo = "video"
|
|
AttrResolution = "resolution"
|
|
AttrTeam = "team"
|
|
AttrImdb = "imdb"
|
|
AttrTmdb = "tmdb"
|
|
)
|