feat: add logging capabilities

This commit is contained in:
Alexander Navarro 2025-05-08 16:52:01 -04:00
parent 3d12877e27
commit 56888931bd
3 changed files with 48 additions and 80 deletions

View file

@ -22,6 +22,9 @@ pub enum Error {
#[error(transparent)]
ParseJson(#[from] serde_json::Error),
#[error(transparent)]
Config(#[from] figment::Error),
}
pub type Result<T> = std::result::Result<T, Error>;