good morning!!!!

Skip to content
Commits on Source (2)
......@@ -46,6 +46,14 @@ func (O *FS) ListFiles() []string {
return out
}
func (O *FS) Open(name string) (filing.HashedFile, error) {
return O.OpenFile(name, 0644, fs.FileMode(os.O_RDWR))
}
func (O *File) Stat() (filing.HashedFileInfo, error) {
return nil, nil
}
func (O *FS) OpenFile(name string, flag int, perm fs.FileMode) (filing.HashedFile, error) {
if flag == 0 {
flag = os.O_RDWR
......
......@@ -4,7 +4,7 @@ import (
"fmt"
"testing"
"github.com/mmcloughlin/meow"
"gfx.cafe/open/goutil/meow"
)
// buffer is pre-allocated to avoid allocations in benchmarking functions themselves.
......
......@@ -4,7 +4,7 @@ import (
"fmt"
"io"
"github.com/mmcloughlin/meow"
"gfx.cafe/open/goutil/meow"
)
func ExampleChecksum() {
......