add empty Inspector file

This commit is contained in:
Mitchell Hashimoto
2023-10-18 08:15:18 -07:00
parent efddef9d1c
commit 4b1809f35e

8
src/Inspector.zig Normal file
View File

@ -0,0 +1,8 @@
//! 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 .{};
}