From 7787ae6fe68c7eb803363612244809e074d4fa45 Mon Sep 17 00:00:00 2001 From: Harald Eilertsen Date: Wed, 30 Oct 2024 20:31:03 +0100 Subject: Re-export the structs from internal modules in the command mod. Just improves usability some. --- src/bin/zot/command.rs | 13 +++++++++++++ src/bin/zot/main.rs | 12 ++++++------ 2 files changed, 19 insertions(+), 6 deletions(-) diff --git a/src/bin/zot/command.rs b/src/bin/zot/command.rs index 6d85ed2..5f92752 100644 --- a/src/bin/zot/command.rs +++ b/src/bin/zot/command.rs @@ -9,3 +9,16 @@ pub mod channel; pub mod contact; pub mod verify; pub mod version; + +pub use channel::{ + export::ChannelExportCmd, + list::ChannelListCmd, + stream::ChannelStreamCmd, +}; + +pub use contact:: { + list::ContactListCmd, +}; + +pub use verify::VerifyCmd; +pub use version::VersionCmd; diff --git a/src/bin/zot/main.rs b/src/bin/zot/main.rs index 8508c13..8cb3622 100644 --- a/src/bin/zot/main.rs +++ b/src/bin/zot/main.rs @@ -104,27 +104,27 @@ async fn main() -> Result<(), Box<(dyn std::error::Error + 'static)>> { Ok(match matches.subcommand() { ("verify", Some(_)) => { - let cmd = command::verify::VerifyCmd{}; + let cmd = command::VerifyCmd{}; cmd.run(z).await?; } ("version", Some(_)) => { - let cmd = command::version::VersionCmd{}; + let cmd = command::VersionCmd{}; cmd.run(z).await?; } ("channel", Some(m)) => { match m.subcommand() { ("list", Some(_)) => { - let cmd = command::channel::list::ChannelListCmd{}; + let cmd = command::ChannelListCmd{}; cmd.run(z).await?; } ("stream", Some(_)) => { - let cmd = command::channel::stream::ChannelStreamCmd{}; + let cmd = command::ChannelStreamCmd{}; cmd.run(z).await?; } ("export", Some(_)) => { - let cmd = command::channel::export::ChannelExportCmd{}; + let cmd = command::ChannelExportCmd{}; cmd.run(z).await?; } _ => { @@ -136,7 +136,7 @@ async fn main() -> Result<(), Box<(dyn std::error::Error + 'static)>> { ("contact", Some(m)) => { match m.subcommand() { ("list", Some(_)) => { - let cmd = command::contact::list::ContactListCmd{}; + let cmd = command::ContactListCmd{}; cmd.run(z).await?; } _ => { -- cgit v1.2.3