From 4b1809f35e6bf85073cbda67e6897e8d10183e72 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 18 Oct 2023 08:15:18 -0700 Subject: [PATCH] add empty Inspector file --- src/Inspector.zig | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/Inspector.zig diff --git a/src/Inspector.zig b/src/Inspector.zig new file mode 100644 index 000000000..d801ad441 --- /dev/null +++ b/src/Inspector.zig @@ -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 .{}; +}