mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-27 19:11:09 +00:00
9 lines
193 B
Rust
9 lines
193 B
Rust
![]() |
use crate::FlowyError;
|
||
|
use reqwest::Error;
|
||
|
|
||
|
impl std::convert::From<reqwest::Error> for FlowyError {
|
||
|
fn from(error: Error) -> Self {
|
||
|
FlowyError::connection().context(error)
|
||
|
}
|
||
|
}
|