Files
bitmagnet/internal/torznab/attributes.go
T
2025-03-23 10:58:45 +00:00

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"
)