aboutsummaryrefslogtreecommitdiff
path: root/src/frontend/root.zig
blob: 8ff1055cb7ec625234b4fd7ffe5d113a943bae53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//! 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("Head.zig");
pub const Minifier = @import("Minifier.zig");

test {
    _ = std.testing.refAllDecls(@This());
}