]> Sergey Matveev's repositories - btrtrc.git/blob - tracker/shared/shared.go
Drop support for go 1.20
[btrtrc.git] / tracker / shared / shared.go
1 package shared
2
3 import "github.com/anacrolix/torrent/tracker/udp"
4
5 const (
6         None      udp.AnnounceEvent = iota
7         Completed                   // The local peer just completed the torrent.
8         Started                     // The local peer has just resumed this torrent.
9         Stopped                     // The local peer is leaving the swarm.
10 )