redis-cloud 0.9.5

Redis Cloud REST API client library
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Fixed plan subscriptions and databases
//!
//! Fixed plans are pre-configured Redis Cloud offerings with set resources and pricing,
//! as opposed to flexible (pay-as-you-go) plans.

pub mod databases;
pub mod subscriptions;

// Re-export handlers for convenience
pub use databases::FixedDatabaseHandler;
pub use subscriptions::FixedSubscriptionHandler;