Skip to content

Commit

Permalink
refactor(cli): use std::io::Result instead of custom error (#166)
Browse files Browse the repository at this point in the history
  • Loading branch information
hougesen authored Feb 12, 2024
1 parent 34cfac5 commit 309a07a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions hitt-cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ use crossterm::{
use self::{
commands::run::run_command,
config::{Cli, Commands},
error::HittCliError,
};

mod commands;
Expand All @@ -19,7 +18,7 @@ mod fs;
mod terminal;

#[tokio::main]
async fn main() -> Result<(), HittCliError> {
async fn main() -> std::io::Result<()> {
let cli = Cli::parse();

let mut term = stdout();
Expand Down

0 comments on commit 309a07a

Please sign in to comment.