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/ssh_cache.zig | |
| parent | 0e8ccc73529758e2bbdcebcbb0c9835ba1d41f6c (diff) | |
cli: make the action parser (+foo) generic and reusable
Diffstat (limited to 'src/cli/ssh_cache.zig')
| -rw-r--r-- | src/cli/ssh_cache.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli/ssh_cache.zig b/src/cli/ssh_cache.zig index c8e2e1123..1099f0112 100644 --- a/src/cli/ssh_cache.zig +++ b/src/cli/ssh_cache.zig @@ -3,7 +3,7 @@ const fs = std.fs; const Allocator = std.mem.Allocator; const xdg = @import("../os/xdg.zig"); const args = @import("args.zig"); -const Action = @import("action.zig").Action; +const Action = @import("ghostty.zig").Action; pub const Entry = @import("ssh-cache/Entry.zig"); pub const DiskCache = @import("ssh-cache/DiskCache.zig"); |
