summaryrefslogtreecommitdiff
path: root/src/cmds/out/hex.rs
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-02-25 10:58:51 +0800
committer魏曹先生 <1992414357@qq.com>2026-02-25 10:58:51 +0800
commitec6fdf88419a7fdad0128f04bb7a0478776974ab (patch)
tree1e44067a7afef878bed9b8b228f6555806e77738 /src/cmds/out/hex.rs
parent6bd344793e5c2e84361475d6e221007ef21faaad (diff)
Add hexdump and sheetdump commands
Diffstat (limited to 'src/cmds/out/hex.rs')
-rw-r--r--src/cmds/out/hex.rs6
1 files changed, 6 insertions, 0 deletions
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<u8>,
+}