make it compile

This commit is contained in:
Jeff Becker
2016-01-28 10:46:09 -05:00
parent 67d49585af
commit 5cf389a79d
8 changed files with 110 additions and 32 deletions

View File

@ -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
}