diff options
Diffstat (limited to 'mling/src/cli.rs')
| -rw-r--r-- | mling/src/cli.rs | 6 |
1 files changed, 3 insertions, 3 deletions
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, |
