├── LICENSE ├── README.md ├── go.mod ├── hashfs.go ├── hashfs_test.go └── testdata ├── a ├── bar └── foo.txt ├── baz.html └── x.y └── z.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbjohnson/hashfs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbjohnson/hashfs/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/benbjohnson/hashfs 2 | 3 | go 1.16 4 | -------------------------------------------------------------------------------- /hashfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbjohnson/hashfs/HEAD/hashfs.go -------------------------------------------------------------------------------- /hashfs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbjohnson/hashfs/HEAD/hashfs_test.go -------------------------------------------------------------------------------- /testdata/a/bar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/a/foo.txt: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /testdata/baz.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbjohnson/hashfs/HEAD/testdata/baz.html -------------------------------------------------------------------------------- /testdata/x.y/z.txt: -------------------------------------------------------------------------------- 1 | TEST --------------------------------------------------------------------------------