mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-06-02 09:58:09 +00:00
9 lines
260 B
Zig
9 lines
260 B
Zig
//! The Inspector is a development tool to debug the terminal. This is
|
|
//! useful for terminal application developers as well as people potentially
|
|
//! debugging issues in Ghostty itself.
|
|
const Inspector = @This();
|
|
|
|
pub fn init() Inspector {
|
|
return .{};
|
|
}
|