├── .gitignore ├── LICENSE ├── README.md ├── root.zig ├── serve.zig └── test.zig /.gitignore: -------------------------------------------------------------------------------- 1 | /.zig-cache 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrk/StaticHttpFileServer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrk/StaticHttpFileServer/HEAD/README.md -------------------------------------------------------------------------------- /root.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrk/StaticHttpFileServer/HEAD/root.zig -------------------------------------------------------------------------------- /serve.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrk/StaticHttpFileServer/HEAD/serve.zig -------------------------------------------------------------------------------- /test.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrk/StaticHttpFileServer/HEAD/test.zig --------------------------------------------------------------------------------