dynamodb_tools/
lib.rs

1#![doc = include_str!("../README.md")]
2
3mod config;
4#[cfg(feature = "connector")]
5mod connector;
6pub mod error;
7
8// Make config structs/enums public for test construction
9pub use config::{AttrType, TableAttr, TableConfig, TableInfo};
10#[cfg(feature = "connector")]
11pub use connector::DynamodbConnector;
12pub use error::{DynamoToolsError, Result};