8 lines
216 B
Rust
Raw Normal View History

pub mod entitygateway;
pub mod inmemory;
2020-10-03 17:30:24 -06:00
pub mod postgres;
2022-04-19 23:20:01 -06:00
pub use entitygateway::{EntityGateway, EntityGatewayTransaction, GatewayError};
pub use inmemory::InMemoryGateway;
2020-10-03 17:30:24 -06:00
pub use self::postgres::PostgresGateway;