mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-08-28 02:37:32 +00:00

* chore: update client api * chore: update client api * chore: update client api * chore: fix clippy * chore: fix clippy * ci: fix * chore: update client api
20 lines
523 B
Rust
20 lines
523 B
Rust
use error_chain::{
|
|
error_chain, error_chain_processing, impl_error_chain_kind, impl_error_chain_processed,
|
|
impl_extract_backtrace,
|
|
};
|
|
|
|
error_chain! {
|
|
errors {
|
|
UnknownMigrationExists(v: String) {
|
|
display("unknown migration version: '{}'", v),
|
|
}
|
|
}
|
|
foreign_links {
|
|
R2D2(::r2d2::Error);
|
|
Migrations(::diesel_migrations::RunMigrationsError);
|
|
Diesel(::diesel::result::Error);
|
|
Connection(::diesel::ConnectionError);
|
|
Io(::std::io::Error);
|
|
}
|
|
}
|