8 lines
216 B
Rust
8 lines
216 B
Rust
pub mod entitygateway;
|
|
pub mod inmemory;
|
|
pub mod postgres;
|
|
|
|
pub use entitygateway::{EntityGateway, EntityGatewayTransaction, GatewayError};
|
|
pub use inmemory::InMemoryGateway;
|
|
pub use self::postgres::PostgresGateway;
|