bt: remove unused Tracker interface

This commit is contained in:
Jimmy Zelinskie 2016-09-05 12:22:49 -04:00
parent 486e898ce9
commit 6cd505269e

View file

@ -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()
}