Skip to content

Commit

Permalink
feature(cli): exposing Result
Browse files Browse the repository at this point in the history
  • Loading branch information
notdanilo committed Dec 16, 2024
1 parent db702df commit c24a7ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/error.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use crate::metadata::CargoError;
use thiserror::Error as ThisError;

pub(crate) type Result<T, E = Error> = std::result::Result<T, E>;
pub type Result<T, E = Error> = std::result::Result<T, E>;

#[derive(ThisError, Debug)]
pub enum Error {
Expand Down

0 comments on commit c24a7ee

Please sign in to comment.