1//! Thalo Postgres 2 3#![deny(missing_docs)] 4 5pub use bb8_postgres::tokio_postgres::tls::*; 6pub use error::Error; 7pub use event_store::PgEventStore; 8 9mod error; 10mod event_store;