diff options
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()); +} |