From 6a907b71f945bf49d27a001f279bf116ad7297d8 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Tue, 28 Apr 2026 16:27:10 +0800 Subject: Rename refresh command to install --- mling/src/cli.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mling/src/cli.rs') diff --git a/mling/src/cli.rs b/mling/src/cli.rs index e0dfbe6..ed5dd06 100644 --- a/mling/src/cli.rs +++ b/mling/src/cli.rs @@ -14,8 +14,8 @@ pub use namespace_mgr::*; pub mod read; pub use read::*; -pub mod refresh; -pub use refresh::*; +pub mod install; +pub use install::*; pub fn cli_entry() { let mut program = ThisProgram::new(); @@ -31,7 +31,7 @@ pub fn cli_entry() { SetTrustNamespaceCommand, RemoveNamespaceCommand, )); - program.with_dispatcher(RefreshCommand); + program.with_dispatcher(InstallCommand); program.with_dispatchers(( ReadTargetDirCommand, ReadWorkspaceRootCommand, -- cgit