mod: make terminal.zig public
All checks were successful
Zig Project Action / Lint, Spell-check and test zig project (push) Successful in 1m33s

This commit is contained in:
2024-12-05 18:59:42 +01:00
parent bbb360e417
commit 3947c2b5af

View File

@@ -1,7 +1,7 @@
// private imports
const terminal = @import("terminal.zig");
// public import / exports
pub const terminal = @import("terminal.zig");
pub const App = @import("app.zig").App;
pub const Renderer = @import("render.zig");