├── .gitignore ├── LICENSE.txt ├── fileserver.go ├── gohttp └── main.go └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | 3 | .idea 4 | 5 | *.iml 6 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itang/gohttp/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /fileserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itang/gohttp/HEAD/fileserver.go -------------------------------------------------------------------------------- /gohttp/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itang/gohttp/HEAD/gohttp/main.go -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itang/gohttp/HEAD/readme.md --------------------------------------------------------------------------------