diff --git a/bittorrent/bittorrent.go b/bittorrent/bittorrent.go index eb18451..5f650df 100644 --- a/bittorrent/bittorrent.go +++ b/bittorrent/bittorrent.go @@ -135,9 +135,3 @@ type ClientError string // Error implements the error interface for ClientError. func (c ClientError) Error() string { return string(c) } - -// Tracker represents an implementation of the BitTorrent tracker protocol. -type Tracker interface { - ListenAndServe() error - Stop() -}