diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-03-18 22:23:53 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-03-18 22:24:10 +0100 |
| commit | 1e7b589e77c7935cbaa8381f50cdcb86c85fa532 (patch) | |
| tree | 6a087761a4b09cd01caff8ae51fb1971d9b0ba8a /src/root.zig | |
Implement first structure of jpg and farbfeld
Diffstat (limited to 'src/root.zig')
| -rw-r--r-- | src/root.zig | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/root.zig b/src/root.zig new file mode 100644 index 0000000..66d909c --- /dev/null +++ b/src/root.zig @@ -0,0 +1,10 @@ +const std = @import("std"); + +pub const color = @import("color.zig"); +pub const farbfeld = @import("farbfeld.zig"); +pub const jpg = @import("jpg/root.zig"); +pub const Bitmap = @import("bitmap.zig").Bitmap; + +test { + _ = std.testing.refAllDecls(@This()); +} |