diff options
Diffstat (limited to 'src/command/init.rs')
| -rw-r--r-- | src/command/init.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/command/init.rs b/src/command/init.rs index d0f31f34..b6fbe4b3 100644 --- a/src/command/init.rs +++ b/src/command/init.rs @@ -1,4 +1,3 @@ -use eyre::Result; use structopt::StructOpt; #[derive(StructOpt)] @@ -20,11 +19,10 @@ fn init_bash() { } impl Cmd { - pub fn run(&self) -> Result<()> { + pub fn run(&self) { match self { Self::Zsh => init_zsh(), Self::Bash => init_bash(), } - Ok(()) } } |
