mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-17 01:06:08 +03:00
14 lines
360 B
Zig
14 lines
360 B
Zig
const std = @import("std");
|
|
pub const cell = @import("cell.zig");
|
|
pub const cursor = @import("cursor.zig");
|
|
pub const key = @import("key.zig");
|
|
pub const page = @import("page.zig");
|
|
pub const termio = @import("termio.zig");
|
|
|
|
pub const Cell = cell.Cell;
|
|
pub const Inspector = @import("Inspector.zig");
|
|
|
|
test {
|
|
@import("std").testing.refAllDecls(@This());
|
|
}
|