Skip to content
Snippets Groups Projects
Commit 5db81627 authored by Jason Volk's avatar Jason Volk
Browse files

add from serde_json error to enum


Signed-off-by: default avatarJason Volk <jason@zemos.net>
parent efa70b9e
No related branches found
No related tags found
3 merge requests!561morguldir/sliding sync fixes,!559Auth Media,!553Misc
......@@ -52,6 +52,8 @@ pub enum Error {
#[error("Join error: {0}")]
JoinError(#[from] tokio::task::JoinError),
#[error(transparent)]
Json(#[from] serde_json::Error),
#[error(transparent)]
Path(#[from] axum::extract::rejection::PathRejection),
#[error("Regex error: {0}")]
Regex(#[from] regex::Error),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment