aboutsummaryrefslogtreecommitdiff
path: root/mling/src/cli.rs
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-07-20 04:57:57 +0800
committer魏曹先生 <1992414357@qq.com>2026-07-20 04:57:57 +0800
commit34c4c66c1d336469e71fad8cff4828cf5d2bdafb (patch)
tree056dd2aef3b775f0d505353a50eefe9e72b7d84d /mling/src/cli.rs
parent8526d32f5713caee52a4839701fe4c4e499fc646 (diff)
feat(core)!: remove `to_chain` and `to_render` from `Grouped` trait
Move routing methods exclusively to the `Routable` trait and update all macro-generated code to reference `Routable` instead of `Grouped`
Diffstat (limited to 'mling/src/cli.rs')
-rw-r--r--mling/src/cli.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mling/src/cli.rs b/mling/src/cli.rs
index 69e4fe9..20906c0 100644
--- a/mling/src/cli.rs
+++ b/mling/src/cli.rs
@@ -11,7 +11,7 @@ use crate::{
};
use colored::Colorize;
use mingling::{
- Grouped, Program, RenderResult,
+ Grouped, Program, RenderResult, Routable,
hook::ProgramHook,
macros::{chain, help, pack, program_setup, renderer},
res::ResExitCode,