Files
go-i2p/lib/netdb/entry.go
2016-08-17 09:19:56 -04:00

21 lines
308 B
Go

package netdb
import (
"github.com/hkparker/go-i2p/lib/common"
"io"
)
// netdb entry
// wraps a router info and provides serialization
type Entry struct {
ri common.RouterInfo
}
func (e *Entry) WriteTo(w io.Writer) (err error) {
return
}
func (e *Entry) ReadFrom(r io.Reader) (err error) {
return
}