aboutsummaryrefslogtreecommitdiff
path: root/provider.go
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2016-01-18 17:27:40 +0100
committerDimitri Sokolyuk <demon@dim13.org>2016-01-18 17:27:40 +0100
commit580f70ebc87cb66007f6ebede4ebdb720b198e30 (patch)
tree8439dbc3341e328ccd7424f1934c7b04fb73188b /provider.go
parente8b957b1de8a148d8b4ab8dfbf76722ba757e0aa (diff)
Drop client again
Diffstat (limited to 'provider.go')
-rw-r--r--provider.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/provider.go b/provider.go
index 413b828..cf54aa4 100644
--- a/provider.go
+++ b/provider.go
@@ -16,7 +16,6 @@ type Provider struct {
Directory
nonces chan string
http.Client
- dir string
}
var (
@@ -50,7 +49,6 @@ func NewProvider(directory string) (*Provider, error) {
Client: http.Client{
Timeout: time.Duration(5 * time.Second),
},
- dir: directory,
}
return p, p.getJson(directory, &p.Directory)
}