diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-02-27 06:20:10 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-02-27 06:20:10 +0800 |
| commit | a31cb962b99e96bda167be87dd37c2e2f82fea2f (patch) | |
| tree | c8182c97081492bc01cf7bfcacc4cd7a8fda45a3 /src/cmds/out/mappings_pretty.rs | |
| parent | 94b7d7d80a0c2dd0884bed60659d65c5019f0839 (diff) | |
Add pretty output option to sheetdump command
Diffstat (limited to 'src/cmds/out/mappings_pretty.rs')
| -rw-r--r-- | src/cmds/out/mappings_pretty.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/cmds/out/mappings_pretty.rs b/src/cmds/out/mappings_pretty.rs new file mode 100644 index 0000000..e0fa58c --- /dev/null +++ b/src/cmds/out/mappings_pretty.rs @@ -0,0 +1,7 @@ +use just_enough_vcs::system::sheet_system::mapping::LocalMapping; +use serde::Serialize; + +#[derive(Serialize)] +pub struct JVMappingsPrettyOutput { + pub mappings: Vec<LocalMapping>, +} |
