Merge pull request #209 from jzelinskie/logrus

misc fixes for #207
This commit is contained in:
mrd0ll4r
2016-09-05 13:40:52 -04:00
committed by GitHub
8 changed files with 42 additions and 44 deletions

View File

@@ -130,9 +130,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()
}