mirror of
https://github.com/go-i2p/go-i2p.git
synced 2025-07-04 13:32:52 -04:00
make it compile
This commit is contained in:
@ -1 +1,18 @@
|
||||
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
|
||||
}
|
||||
|
Reference in New Issue
Block a user