diff options
Diffstat (limited to 'crates/turtle/src/command/gen_completions.rs')
| -rw-r--r-- | crates/turtle/src/command/gen_completions.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/turtle/src/command/gen_completions.rs b/crates/turtle/src/command/gen_completions.rs index 10d4f689..7cc697d4 100644 --- a/crates/turtle/src/command/gen_completions.rs +++ b/crates/turtle/src/command/gen_completions.rs @@ -9,7 +9,7 @@ use eyre::Result; // into one command. #[derive(Debug, Clone, ValueEnum)] #[value(rename_all = "lower")] -pub enum GenShell { +pub(crate) enum GenShell { Bash, Elvish, Fish, @@ -49,7 +49,7 @@ impl Generator for GenShell { } #[derive(Debug, Parser)] -pub struct Cmd { +pub(crate) struct Cmd { /// Set the shell for generating completions #[arg(long, short)] shell: GenShell, @@ -60,7 +60,7 @@ pub struct Cmd { } impl Cmd { - pub fn run(self) -> Result<()> { + pub(crate) fn run(self) -> Result<()> { let Cmd { shell, out_dir } = self; let mut cli = crate::Atuin::command(); |
