summaryrefslogtreecommitdiff
path: root/src/main.zig
diff options
context:
space:
mode:
authorMartin Ashby <martin@ashbysoft.com>2023-10-07 21:43:33 +0100
committerMartin Ashby <martin@ashbysoft.com>2023-10-07 21:43:33 +0100
commita28a7c8db679d7a787be035035773abe8dadfff3 (patch)
tree3842a4dabbe201cc80babcdad3badd1da2d317cb /src/main.zig
downloadzipdl-a28a7c8db679d7a787be035035773abe8dadfff3.tar.gz
zipdl-a28a7c8db679d7a787be035035773abe8dadfff3.tar.bz2
zipdl-a28a7c8db679d7a787be035035773abe8dadfff3.tar.xz
zipdl-a28a7c8db679d7a787be035035773abe8dadfff3.zip
Initial.
Implementation of seekable HTTP range, which will be used for reading ZIP over http without downloading the whole thing.
Diffstat (limited to 'src/main.zig')
-rw-r--r--src/main.zig6
1 files changed, 6 insertions, 0 deletions
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