diff options
Diffstat (limited to 'src/html/root.zig')
| -rw-r--r-- | src/html/root.zig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/html/root.zig b/src/html/root.zig new file mode 100644 index 0000000..14a9b3c --- /dev/null +++ b/src/html/root.zig @@ -0,0 +1,7 @@ +const std = @import("std"); + +pub const Element = @import("Element.zig"); + +test { + _ = std.testing.refAllDecls(@This()); +} |