From 54b5567d6f1b1adaa6ada6a26faba0c5c492b7f3 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sat, 14 Mar 2026 21:39:30 +0800 Subject: Add version command with banner and compile info display --- src/cmds/collect/compile_info.rs | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/cmds/collect/compile_info.rs (limited to 'src/cmds/collect') diff --git a/src/cmds/collect/compile_info.rs b/src/cmds/collect/compile_info.rs new file mode 100644 index 0000000..1f33660 --- /dev/null +++ b/src/cmds/collect/compile_info.rs @@ -0,0 +1,7 @@ +use crate::data::compile_info::CompileInfo; +use just_enough_vcs::data::compile_info::CoreCompileInfo; + +pub struct JVCompileInfoCollect { + pub compile_info: CompileInfo, + pub compile_info_core: CoreCompileInfo, +} -- cgit