mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 23:52:31 +00:00
12 lines
235 B
Zig
12 lines
235 B
Zig
const std = @import("std.zig");
|
|
|
|
pub const deflate = @import("compress/deflate.zig");
|
|
pub const gzip = @import("compress/gzip.zig");
|
|
pub const zlib = @import("compress/zlib.zig");
|
|
|
|
test {
|
|
_ = deflate;
|
|
_ = gzip;
|
|
_ = zlib;
|
|
}
|