Complete skeleton dispatcher

- Complete the dispatcher for the 'introducer' and 'local' command. This
  is currently only a skeleton.
- The 'introducer list' command is added.
This commit is contained in:
Malte Meiboom
2026-04-27 13:17:03 +02:00
parent c33feb1ee7
commit 799f6eb588
11 changed files with 183 additions and 13 deletions
+11
View File
@@ -0,0 +1,11 @@
use anyhow::Result;
use crate::cli::cli_args::IntroducerRemoveCommand;
use crate::config::HuskConfigContainer;
pub async fn dispatch(cmd: IntroducerRemoveCommand, _config: &HuskConfigContainer) -> Result<()> {
println!("remove");
println!(" {:?}", cmd.cert);
Ok(())
}