Skip to content

Commit

Permalink
Make CLI component pub accessible
Browse files Browse the repository at this point in the history
  • Loading branch information
leighmcculloch committed May 14, 2024
1 parent 204ccb8 commit 24c080d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions src/cli/mod.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
mod decode;
mod encode;
mod guess;
mod types;
pub mod decode;
pub mod encode;
pub mod guess;
pub mod types;
mod version;

use clap::{Parser, Subcommand, ValueEnum};
Expand Down
4 changes: 2 additions & 2 deletions src/cli/types.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
mod list;
pub mod list;

use clap::{Args, Subcommand};

Expand All @@ -12,7 +12,7 @@ pub struct Cmd {
}

#[derive(Subcommand, Clone, Debug)]
pub enum Sub {
enum Sub {
List(list::Cmd),
}

Expand Down

0 comments on commit 24c080d

Please sign in to comment.