blob: 20c725e5c2730652bc4e6ae2fe8b7e95fc121e95 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//! 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");
test {
_ = std.testing.refAllDecls(@This());
}
|