Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 03-May-2022 | - | ||||
filter/ | H | 07-Jul-2019 | - | |||
html/vfstemplate/ | H | 07-Jul-2019 | - | |||
httputil/ | H | 07-Jul-2019 | - | |||
path/vfspath/ | H | 07-Jul-2019 | - | |||
text/vfstemplate/ | H | 07-Jul-2019 | - | |||
union/ | H | 07-Jul-2019 | - | |||
vfsutil/ | H | 07-Jul-2019 | - | |||
.travis.yml | H A D | 07-Jul-2019 | 386 | |||
LICENSE | H A D | 07-Jul-2019 | 1 KiB | |||
README.md | H A D | 07-Jul-2019 | 2.2 KiB |
README.md
1httpfs 2====== 3 4[![Build Status](https://travis-ci.org/shurcooL/httpfs.svg?branch=master)](https://travis-ci.org/shurcooL/httpfs) [![GoDoc](https://godoc.org/github.com/shurcooL/httpfs?status.svg)](https://godoc.org/github.com/shurcooL/httpfs) 5 6Collection of Go packages for working with the [`http.FileSystem`](https://godoc.org/net/http#FileSystem) interface. 7 8Installation 9------------ 10 11```bash 12go get -u github.com/shurcooL/httpfs/... 13``` 14 15Directories 16----------- 17 18| Path | Synopsis | 19|-----------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------| 20| [filter](https://godoc.org/github.com/shurcooL/httpfs/filter) | Package filter offers an http.FileSystem wrapper with the ability to keep or skip files. | 21| [html/vfstemplate](https://godoc.org/github.com/shurcooL/httpfs/html/vfstemplate) | Package vfstemplate offers html/template helpers that use http.FileSystem. | 22| [httputil](https://godoc.org/github.com/shurcooL/httpfs/httputil) | Package httputil implements HTTP utility functions for http.FileSystem. | 23| [path/vfspath](https://godoc.org/github.com/shurcooL/httpfs/path/vfspath) | Package vfspath implements utility routines for manipulating virtual file system paths. | 24| [text/vfstemplate](https://godoc.org/github.com/shurcooL/httpfs/text/vfstemplate) | Package vfstemplate offers text/template helpers that use http.FileSystem. | 25| [union](https://godoc.org/github.com/shurcooL/httpfs/union) | Package union offers a simple http.FileSystem that can unify multiple filesystems at various mount points. | 26| [vfsutil](https://godoc.org/github.com/shurcooL/httpfs/vfsutil) | Package vfsutil implements some I/O utility functions for http.FileSystem. | 27 28License 29------- 30 31- [MIT License](LICENSE) 32