diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-05-20 17:29:28 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-05-20 17:30:28 +0200 |
| commit | c6fb7b4962778c12f786d7d4de96787459a3b4dc (patch) | |
| tree | 4e21b9a1afd06d7edf5dd87dfffe822c073c6521 /src/frontend/root.zig | |
| parent | 755c794883467609e425207f6a543d2e8c6d6b46 (diff) | |
frontend: add comptime bundler
Diffstat (limited to 'src/frontend/root.zig')
| -rw-r--r-- | src/frontend/root.zig | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/frontend/root.zig b/src/frontend/root.zig index f2cce4c..39908b5 100644 --- a/src/frontend/root.zig +++ b/src/frontend/root.zig @@ -2,6 +2,10 @@ //! which will be embedded right into the ELF file to improve deployment. const std = @import("std"); +pub const Component = @import("Component.zig"); +pub const Document = @import("Document.zig"); +pub const File = @import("File.zig"); +pub const Head = @import("File.zig"); test { _ = std.testing.refAllDecls(@This()); |