initial commit
Some checks failed
Zig Project Action / Lint, Spell-check and test zig project (push) Failing after 30s
Some checks failed
Zig Project Action / Lint, Spell-check and test zig project (push) Failing after 30s
This commit is contained in:
12
src/zterm.zig
Normal file
12
src/zterm.zig
Normal file
@@ -0,0 +1,12 @@
|
||||
// private imports
|
||||
const terminal = @import("terminal.zig");
|
||||
|
||||
// public import / exports
|
||||
pub const App = @import("app.zig").App;
|
||||
pub const Renderer = @import("render.zig");
|
||||
pub const Key = terminal.Key;
|
||||
pub const Size = terminal.Size;
|
||||
|
||||
test {
|
||||
_ = @import("queue.zig");
|
||||
}
|
||||
Reference in New Issue
Block a user