//#![warn(missing_docs)]
//! A very simple wrapper to handle locked storage of items.
//!
//! Provides an abstraction over storage backends.
//! The core idea is that storage items will be locked in storage and stay hot in memory for a while.
//!
//! Note:
//! The documentation is still work-in-progress.
pub use LockNewResult;
pub use LockResult;
pub use Storage;
pub use StorageLock;
pub use StorageItem;
pub use StorageDisk;
pub use StorageDynamoDb;
pub use StorageNull;
pub use Metadata;