interledger-store-redis 0.2.2-beta.3

Data store for Interledger.js using Redis
Documentation
//! # interledger-store-redis
//!
//! A Store that uses [Redis](https://redis.io/) as the database for storing account details, balances, the routing table, etc.

mod account;
mod crypto;
mod reconnect;
mod store;

pub use account::{Account, AccountId};
pub use redis::{ConnectionInfo, IntoConnectionInfo};
pub use store::{RedisStore, RedisStoreBuilder};