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:20:25 -05:00
parent 33dc7d985d
commit 204d4ae6dc
6 changed files with 381 additions and 122 deletions

23
I2PAddr_test.go Normal file
View File

@ -0,0 +1,23 @@
package i2pkeys
/*
import (
"fmt"
"testing"
// "time"
)
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("")
if err != nil {
fmt.Println(err.Error())
t.Fail()
return
}
fmt.Println(keys.String())
}
*/