Files
ghostty/src/Inspector.zig
2023-10-24 15:27:13 -07:00

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 .{};
}