start working on basic key storage for own RI private keys

This commit is contained in:
eyedeekay
2025-02-15 22:17:32 -05:00
parent 036f9116a5
commit b95b0c4fa3

View File

@ -8,6 +8,7 @@ import (
"github.com/sirupsen/logrus"
"github.com/go-i2p/go-i2p/lib/config"
"github.com/go-i2p/go-i2p/lib/keys"
"github.com/go-i2p/go-i2p/lib/netdb"
)
@ -15,6 +16,7 @@ var log = logger.GetGoI2PLogger()
// i2p router type
type Router struct {
*keys.RouterInfoKeystore
cfg *config.RouterConfig
ndb netdb.StdNetDB
closeChnl chan bool