Files
go-i2p/lib/netdb/entry.go
2016-01-28 10:46:09 -05:00

19 lines
250 B
Go

package netdb
import (
"io"
"path/filepath"
)
type Entry struct {
fname string
}
func (e *Entry) FilePath(n StdNetDB) (str string) {
return filepath.Join(string(n), e.fname)
}
func (e *Entry) WriteTo(w io.Writer) (err error) {
return
}