8 lines
174 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;
pub use inmemory::InMemoryGateway;
2020-10-03 17:30:24 -06:00
pub use self::postgres::PostgresGateway;