Intial project structure with zterm dependency and basic tui render/event loop
Some checks failed
Zig Project Action / Lint, Spell-check and test zig project (push) Failing after 1m41s

This commit is contained in:
2025-11-26 17:55:29 +01:00
parent ae64674873
commit 5dba0d4408
8 changed files with 230 additions and 0 deletions

9
src/model.zig Normal file
View File

@@ -0,0 +1,9 @@
//! Model of the `zterm` application.
// TODO planned features:
// FIX known issues:
const Model = @This();
pub const init: @This() = .{};