diff options
| author | Anhgelus Morhtuuzh <william@herges.fr> | 2026-04-16 22:33:44 +0200 |
|---|---|---|
| committer | Anhgelus Morhtuuzh <william@herges.fr> | 2026-04-16 22:33:44 +0200 |
| commit | 6df64050b1442a5f3a0f566cd816639ac1fd298f (patch) | |
| tree | 81de54495e09c501d7d2839828523eaabb7a0569 /src/root.zig | |
| parent | 11cc71f3b59fa62fd2fb2cb3b84e689317fb1268 (diff) | |
feat(dom): element generator
Diffstat (limited to 'src/root.zig')
| -rw-r--r-- | src/root.zig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/root.zig b/src/root.zig index 2bcf565..43a0d7d 100644 --- a/src/root.zig +++ b/src/root.zig @@ -1,5 +1,6 @@ const std = @import("std"); -pub const lexer = @import("lexer/lexer.zig"); +pub const lexer = @import("lexer/Lexer.zig"); +pub const element = @import("dom/Element.zig"); pub fn bufferedPrint() !void { // Stdout is for the actual output of your application, for example if you |
