thalo-postgres 0.5.0

Postgres event store for crates.io/thalo
Documentation
1
2
3
4
5
6
7
8
9
10
//! Thalo Postgres

#![deny(missing_docs)]

pub use bb8_postgres::tokio_postgres::tls::*;
pub use error::Error;
pub use event_store::PgEventStore;

mod error;
mod event_store;