feat: reminder (#3374)

This commit is contained in:
Mathias Mogensen
2023-10-02 09:12:24 +02:00
committed by GitHub
parent f7749bdccc
commit 4a433a3176
99 changed files with 4599 additions and 998 deletions

View File

@ -137,3 +137,9 @@ impl From<anyhow::Error> for FlowyError {
.unwrap_or_else(|err| FlowyError::new(ErrorCode::Internal, err))
}
}
impl From<fancy_regex::Error> for FlowyError {
fn from(e: fancy_regex::Error) -> Self {
FlowyError::internal().with_context(e)
}
}