dynamodb-tools 0.5.0

A simple library to work with dynamodb local easy.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![doc = include_str!("../README.md")]

mod config;
#[cfg(feature = "connector")]
mod connector;
pub mod error;

// Make config structs/enums public for test construction
pub use config::{AttrType, TableAttr, TableConfig, TableInfo};
#[cfg(feature = "connector")]
pub use connector::DynamodbConnector;
pub use error::{DynamoToolsError, Result};