summaryrefslogtreecommitdiff
path: root/mingling/src/program/config.rs
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-03-29 21:48:23 +0800
committer魏曹先生 <1992414357@qq.com>2026-03-29 21:48:23 +0800
commit596e5e2440df2d32f1cf3e052dc633e774edf6ee (patch)
treedc98eb6a1789847b899207d0b99337bb3ccd92a5 /mingling/src/program/config.rs
parent25a164f74c011e6e78846f226cbd7a8bd87db92f (diff)
Rename mingling to mingling_core and update dependencies
Diffstat (limited to 'mingling/src/program/config.rs')
-rw-r--r--mingling/src/program/config.rs26
1 files changed, 0 insertions, 26 deletions
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,
-}