diff options
| author | Mitchell Hashimoto <m@mitchellh.com> | 2025-07-08 08:55:34 -0700 |
|---|---|---|
| committer | Mitchell Hashimoto <m@mitchellh.com> | 2025-07-09 15:06:24 -0700 |
| commit | 1739418f6f6fab3bb7df9c2c84eba91ddabe91b2 (patch) | |
| tree | 62c9fac91d1ba3e8d2283a56395fd304ccc81461 /src/cli.zig | |
| parent | 0e8ccc73529758e2bbdcebcbb0c9835ba1d41f6c (diff) | |
cli: make the action parser (+foo) generic and reusable
Diffstat (limited to 'src/cli.zig')
| -rw-r--r-- | src/cli.zig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cli.zig b/src/cli.zig index 151e6e648..008ff1ebf 100644 --- a/src/cli.zig +++ b/src/cli.zig @@ -1,7 +1,8 @@ const diags = @import("cli/diagnostics.zig"); pub const args = @import("cli/args.zig"); -pub const Action = @import("cli/action.zig").Action; +pub const action = @import("cli/action.zig"); +pub const ghostty = @import("cli/ghostty.zig"); pub const CompatibilityHandler = args.CompatibilityHandler; pub const compatibilityRenamed = args.compatibilityRenamed; pub const DiagnosticList = diags.DiagnosticList; |
