8 lines
190 B
Rust
Raw Normal View History

pub mod entitygateway;
pub mod inmemory;
2020-10-03 17:30:24 -06:00
pub mod postgres;
pub use entitygateway::{EntityGateway, GatewayError};
pub use inmemory::InMemoryGateway;
2020-10-03 17:30:24 -06:00
pub use self::postgres::PostgresGateway;