diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-05-28 20:47:08 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-05-28 20:47:08 +0200 |
| commit | cd7883d16956d80c67a91c4e07be5335f4de5c39 (patch) | |
| tree | 633631b3bbe3f6beb16859bcf0eb4c088eb571ae /src/root.zig | |
| parent | 35fb9361b2113f4ebc7179b9421f5f3b8a98a6c7 (diff) | |
first sketch of pinch zoom
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 8d85eb4..0cd7c71 100644 --- a/src/root.zig +++ b/src/root.zig @@ -2,5 +2,6 @@ pub const db = @import("db"); pub const api = @import("api"); -pub const frontend = @import("frontend"); +pub const html = @import("html"); +pub const z = @import("z"); pub const http = @import("http"); |