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/out/hex.rs | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/cmds/out/hex.rs (limited to 'src/cmds/out/hex.rs') diff --git a/src/cmds/out/hex.rs b/src/cmds/out/hex.rs new file mode 100644 index 0000000..69e2b37 --- /dev/null +++ b/src/cmds/out/hex.rs @@ -0,0 +1,6 @@ +use serde::Serialize; + +#[derive(Serialize)] +pub struct JVHexOutput { + pub data: Vec, +} -- cgit