mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
6 lines
186 B
Rust
6 lines
186 B
Rust
use crate::FlowyError;
|
|
|
|
impl std::convert::From<lib_ot::errors::OTError> for FlowyError {
|
|
fn from(error: lib_ot::errors::OTError) -> Self { FlowyError::internal().context(error) }
|
|
}
|