Files
Go_I2p/lib/netdb/entry.go
2016-01-29 07:22:31 -05:00

19 lines
245 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
}