aboutsummaryrefslogtreecommitdiff
path: root/src/frontend/root.zig
blob: 39908b5b118ab956e87d62ac80375acec29920aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//! Implementation of the frontend contains mainly javascript files
//! 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());
}