move i2pkeys to it's own standalone directory.

This commit is contained in:
idk
2019-04-09 14:31:59 -04:00
parent 2b8b539e44
commit 777c148eee
2 changed files with 5 additions and 1 deletions

View File

@ -27,7 +27,7 @@ func Test_Basic(t *testing.T) {
t.Fail()
} else {
fmt.Println("\tAddress created: " + keys.Addr().Base32())
fmt.Println("\tI2PKeys: " + string(keys.both)[:50] + "(...etc)")
fmt.Println("\tI2PKeys: " + string(keys.String())[:50] + "(...etc)")
}
addr2, err := sam.Lookup("zzz.i2p")

View File

@ -8,6 +8,10 @@ import (
"testing"
)
import (
. "github.com/eyedeekay/sam3/i2pkeys"
)
func Test_StreamingDial(t *testing.T) {
if testing.Short() {
return