hypha: implement image cache

This commit is contained in:
Alex Zenla
2024-01-18 00:02:21 -08:00
parent 9c438e8e57
commit 1c92ba54f3
6 changed files with 149 additions and 25 deletions

View File

@ -66,3 +66,9 @@ impl From<BackhandError> for HyphaError {
HyphaError::new(value.to_string().as_str())
}
}
impl From<serde_json::Error> for HyphaError {
fn from(value: serde_json::Error) -> Self {
HyphaError::new(value.to_string().as_str())
}
}