mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
11 lines
335 B
Go
11 lines
335 B
Go
package shared
|
|
|
|
import "github.com/anacrolix/torrent/tracker/udp"
|
|
|
|
const (
|
|
None udp.AnnounceEvent = iota
|
|
Completed // The local peer just completed the torrent.
|
|
Started // The local peer has just resumed this torrent.
|
|
Stopped // The local peer is leaving the swarm.
|
|
)
|