mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-08-04 06:50:23 +00:00

* chore: async load user profile * chore: enable reset workspace * chore: add confirm dialog
8 lines
191 B
Rust
8 lines
191 B
Rust
use crate::FlowyError;
|
|
|
|
impl std::convert::From<tokio_postgres::Error> for FlowyError {
|
|
fn from(error: tokio_postgres::Error) -> Self {
|
|
FlowyError::internal().with_context(error)
|
|
}
|
|
}
|