diff options
| author | daurnimator <quae@daurnimator.com> | 2019-04-12 12:35:57 +0200 |
|---|---|---|
| committer | daurnimator <quae@daurnimator.com> | 2019-06-11 22:54:40 +1000 |
| commit | 43d52fa4c5dd3dac36f83c0494286db280d592bc (patch) | |
| tree | c3ee5fb00f3ff44aade901fd63f8a02f7f7c99a0 /std/http.zig | |
| parent | 34a22a85ca8d4371fe9b8f921cce858ab4351cca (diff) | |
| download | zig-43d52fa4c5dd3dac36f83c0494286db280d592bc.tar.gz zig-43d52fa4c5dd3dac36f83c0494286db280d592bc.zip | |
std: add std.http.Headers field
Based on lua-http's data structure
Diffstat (limited to 'std/http.zig')
| -rw-r--r-- | std/http.zig | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/std/http.zig b/std/http.zig new file mode 100644 index 0000000000..acb005a75f --- /dev/null +++ b/std/http.zig @@ -0,0 +1,5 @@ +test "std.http" { + _ = @import("http/headers.zig"); +} + +pub const Headers = @import("http/headers.zig").Headers; |
