From a28a7c8db679d7a787be035035773abe8dadfff3 Mon Sep 17 00:00:00 2001 From: Martin Ashby Date: Sat, 7 Oct 2023 21:43:33 +0100 Subject: Initial. Implementation of seekable HTTP range, which will be used for reading ZIP over http without downloading the whole thing. --- src/main.zig | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/main.zig (limited to 'src/main.zig') diff --git a/src/main.zig b/src/main.zig new file mode 100644 index 0000000..ca1fcd8 --- /dev/null +++ b/src/main.zig @@ -0,0 +1,6 @@ +const std = @import("std"); +const SeekableHttpRange = @import("seekable_http_range.zig"); + +test { + _ = SeekableHttpRange; +} \ No newline at end of file -- cgit v1.2.3-ZIG