repurpose the useless cmd application nobody used into a place to put the i2pkeys library outside of both the SAM libraries

This commit is contained in:
idk
2022-03-10 00:44:14 -05:00
parent 204d4ae6dc
commit f1a1319f2b
2 changed files with 47 additions and 29 deletions

View File

@ -1,6 +1,5 @@
package i2pkeys
/*
import (
"fmt"
"testing"
@ -12,7 +11,7 @@ const yoursam = "127.0.0.1:7656"
func Test_Basic(t *testing.T) {
fmt.Println("Test_Basic")
fmt.Println("\tAttaching to SAM at " + yoursam)
keys, err := NewDestination("")
keys, err := NewDestination()
if err != nil {
fmt.Println(err.Error())
t.Fail()
@ -20,4 +19,3 @@ func Test_Basic(t *testing.T) {
}
fmt.Println(keys.String())
}
*/