Files
daqingest/dbpg/src/err.rs
2023-08-28 22:58:47 +02:00

8 lines
133 B
Rust

use err::thiserror;
use err::ThisError;
#[derive(Debug, ThisError)]
pub enum Error {
Postgres(#[from] tokio_postgres::Error),
}