ghostty/src/terminfo/main.zig
2023-06-24 09:12:42 -07:00

14 lines
532 B
Zig

//! Package terminfo provides functionality related to terminfo/termcap files.
//!
//! At the time of writing this comment, the focus is on generating terminfo
//! files so that we can maintain our terminfo in Zig instead of hand-writing
//! the archaic (imo) terminfo format by hand. But eventually we may want to
//! extract this into a more full-featured library on its own.
pub const ghostty = @import("ghostty.zig").ghostty;
pub const Source = @import("Source.zig");
test {
@import("std").testing.refAllDecls(@This());
}