From 6cd505269ee7bc33a087c97822e7e82d1e017812 Mon Sep 17 00:00:00 2001 From: Jimmy Zelinskie Date: Mon, 5 Sep 2016 12:22:49 -0400 Subject: [PATCH] bt: remove unused Tracker interface --- bittorrent/bittorrent.go | 6 ------ 1 file changed, 6 deletions(-) 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() -}