dynamodb_tools/
lib.rs

1mod config;
2#[cfg(feature = "connector")]
3mod connector;
4
5pub use config::{TableConfig, TableInfo};
6#[cfg(feature = "connector")]
7pub use connector::DynamodbConnector;