fix: use imported modules consistently in action dispatch

pull/7608/head
Jason Rayne 2025-06-25 16:47:17 -07:00
parent 59229d7681
commit e5e2a56c98
No known key found for this signature in database
GPG Key ID: 097A1F6E614573B7
1 changed files with 2 additions and 2 deletions

View File

@ -163,8 +163,8 @@ pub const Action = enum {
.@"list-themes" => try list_themes.run(alloc),
.@"list-colors" => try list_colors.run(alloc),
.@"list-actions" => try list_actions.run(alloc),
.@"list-ssh-cache" => @import("list_ssh_cache.zig").run(alloc),
.@"clear-ssh-cache" => @import("clear_ssh_cache.zig").run(alloc),
.@"list-ssh-cache" => try list_ssh_cache.run(alloc),
.@"clear-ssh-cache" => try clear_ssh_cache.run(alloc),
.@"edit-config" => try edit_config.run(alloc),
.@"show-config" => try show_config.run(alloc),
.@"validate-config" => try validate_config.run(alloc),