//! # rustamodb
//!
//! `rustamodb` is inspired by [pynamodb](https://pynamodb.readthedocs.io/en/latest/) and is a simple
//! to use library for AWS DynamoDB.
//!
//! # Examples
//!
//! ```
//! fn main() {
//! match rustamodb::scan(&"my_dynamodb_table") {
//! Ok(scan_output) => {
//! for item in scan_output {
//! println!("{:?}", item);
//! }
//! },
//! Err(_) => (),
//! }
//! }
//! ```
extern crate lazy_static;
extern crate rusoto_core;
extern crate rusoto_dynamodb;
pub use ;