From 596e5e2440df2d32f1cf3e052dc633e774edf6ee Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sun, 29 Mar 2026 21:48:23 +0800 Subject: Rename mingling to mingling_core and update dependencies --- mingling/src/program/config.rs | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 mingling/src/program/config.rs (limited to 'mingling/src/program/config.rs') diff --git a/mingling/src/program/config.rs b/mingling/src/program/config.rs deleted file mode 100644 index 386b112..0000000 --- a/mingling/src/program/config.rs +++ /dev/null @@ -1,26 +0,0 @@ -#[derive(Debug, Clone)] -pub struct ProgramStdoutSetting { - /// Output error messages - pub error_output: bool, - - /// Render results and output - pub render_output: bool, -} - -impl Default for ProgramStdoutSetting { - fn default() -> Self { - ProgramStdoutSetting { - error_output: true, - render_output: true, - } - } -} - -#[derive(Debug, Clone, Default)] -pub struct ProgramUserContext { - /// View help information instead of running the command - pub help: bool, - - /// Skip user confirmation step - pub confirm: bool, -} -- cgit