rename frontends to frontend

This commit is contained in:
Leo Balduf
2016-08-09 15:01:36 -04:00
committed by Jimmy Zelinskie
parent 88567d5b2e
commit ae18d89627
20 changed files with 13 additions and 13 deletions
+2 -2
View File
@@ -20,7 +20,7 @@ package backend
import (
"time"
"github.com/jzelinskie/trakr/frontends"
"github.com/jzelinskie/trakr/frontend"
)
// GenericConfig is a block of configuration who's structure is unknown.
@@ -42,6 +42,6 @@ func New(config BackendConfig, peerStore PeerStore) (*Backend, error) {
// Backend is a multi-protocol, customizable BitTorrent Tracker.
type Backend struct {
TrackerFuncs frontends.TrackerFuncs
TrackerFuncs frontend.TrackerFuncs
peerStore PeerStore
}