From ec6fdf88419a7fdad0128f04bb7a0478776974ab Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Wed, 25 Feb 2026 10:58:51 +0800 Subject: Add hexdump and sheetdump commands --- src/cmds/cmd/status.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/cmds/cmd/status.rs') diff --git a/src/cmds/cmd/status.rs b/src/cmds/cmd/status.rs index 4e89d42..c1f2a96 100644 --- a/src/cmds/cmd/status.rs +++ b/src/cmds/cmd/status.rs @@ -5,7 +5,7 @@ use crate::{ cmds::{ arg::status::JVStatusArgument, collect::status::JVStatusCollect, - r#in::status::JVStatusInput, + r#in::empty::JVEmptyInput, out::status::{JVStatusOutput, JVStatusWrongModifyReason}, }, systems::cmd::{ @@ -22,7 +22,7 @@ use just_enough_vcs::lib::{ pub struct JVStatusCommand; type Cmd = JVStatusCommand; type Arg = JVStatusArgument; -type In = JVStatusInput; +type In = JVEmptyInput; type Collect = JVStatusCollect; fn help_str() -> String { @@ -30,7 +30,7 @@ fn help_str() -> String { } async fn prepare(_args: &Arg, _ctx: &JVCommandContext) -> Result { - Ok(JVStatusInput) + Ok(In {}) } async fn collect(_args: &Arg, _ctx: &JVCommandContext) -> Result { -- cgit