8 lines
133 B
Rust
8 lines
133 B
Rust
use err::thiserror;
|
|
use err::ThisError;
|
|
|
|
#[derive(Debug, ThisError)]
|
|
pub enum Error {
|
|
Postgres(#[from] tokio_postgres::Error),
|
|
}
|