commit 2deec861ff5a514e499f9c0d3b05a5aa639bc1e0
parent c29b9d83726c966bb9b60e61fa1408a13843279c
Author: parazyd <parazyd@dyne.org>
Date: Fri, 8 Dec 2017 02:01:49 +0100
Avoid using relative imports
Diffstat:
2 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/dam/dam.go b/dam/dam.go
@@ -8,7 +8,7 @@ import (
"log"
"os"
- "../lib"
+ "github.com/parazyd/tor-dam/lib"
)
// Bits hold the size of our RSA private key. Tor standard is 1024.
diff --git a/ddir/ddir.go b/ddir/ddir.go
@@ -11,8 +11,7 @@ import (
"time"
"github.com/go-redis/redis"
-
- "../lib"
+ "github.com/parazyd/tor-dam/lib"
)
// ListenAddress controls where our HTTP API daemon is listening.