diff options
author | Ben Johnson <benbjohnson@yahoo.com> | 2014-01-13 08:25:56 -0700 |
---|---|---|
committer | Ben Johnson <benbjohnson@yahoo.com> | 2014-01-13 08:25:56 -0700 |
commit | f1d7fe5b084c4ee48ba9b6f2591a997594341878 (patch) | |
tree | 01a7363a92c2e52eda168b95fabde7a429e9a027 /file.go | |
parent | Mock syscall. (diff) | |
download | dedo-f1d7fe5b084c4ee48ba9b6f2591a997594341878.tar.gz dedo-f1d7fe5b084c4ee48ba9b6f2591a997594341878.tar.xz |
Finish open coverage.
Diffstat (limited to 'file.go')
-rw-r--r-- | file.go | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1,7 +1,12 @@ package bolt +import ( + "os" +) + type file interface { Fd() uintptr ReadAt(b []byte, off int64) (n int, err error) + Stat() (fi os.FileInfo, err error) WriteAt(b []byte, off int64) (n int, err error) } |