store, store_sqlite: Refactor error typing

This commit is contained in:
Lennart
2024-10-28 17:10:03 +01:00
parent 925b26ea0f
commit cce3e260af
9 changed files with 75 additions and 106 deletions

View File

@@ -11,8 +11,8 @@ pub enum Error {
InvalidData(String),
#[error(transparent)]
Other(#[from] anyhow::Error),
ParserError(#[from] ical::parser::ParserError),
#[error(transparent)]
ParserError(#[from] ical::parser::ParserError),
Other(#[from] anyhow::Error),
}