From db9afa0b06355028eafe3bc29fe0b2429ba8fd0a Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sun, 29 Mar 2026 00:52:16 +0800 Subject: Completed the first preliminary usable version of the Mingling framework. --- mingling/src/program/config.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'mingling/src/program/config.rs') diff --git a/mingling/src/program/config.rs b/mingling/src/program/config.rs index 93507e7..ffcade3 100644 --- a/mingling/src/program/config.rs +++ b/mingling/src/program/config.rs @@ -1,3 +1,4 @@ +#[derive(Debug, Clone)] pub struct ProgramStdoutSetting { /// Output error messages pub error_output: bool, @@ -15,6 +16,7 @@ impl Default for ProgramStdoutSetting { } } +#[derive(Debug, Clone)] pub struct ProgramUserContext { /// View help information instead of running the command pub help: bool, -- cgit