diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2025-02-01 12:47:35 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2025-02-01 12:47:35 +0100 |
| commit | 85bcada8cf78bdf2bfb3be583289686026e0f25e (patch) | |
| tree | 0ce404c4840432db9b6d3addd3947a736d103382 /src/estd/root.zig | |
| parent | 2ce14aec655589f00442ab469b9d877a143eeefd (diff) | |
screen: start drm implementation
Diffstat (limited to 'src/estd/root.zig')
| -rw-r--r-- | src/estd/root.zig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/estd/root.zig b/src/estd/root.zig new file mode 100644 index 0000000..86af090 --- /dev/null +++ b/src/estd/root.zig @@ -0,0 +1,8 @@ +const std = @import("std"); + +pub const cursor = @import("cursor.zig"); +pub const parser = @import("parser/root.zig"); + +test { + std.testing.refAllDecls(@This()); +} |