this repo has no description
1pub mod batch; 2pub mod delete; 3pub mod read; 4pub mod utils; 5pub mod write; 6 7pub use batch::apply_writes; 8pub use delete::{DeleteRecordInput, delete_record}; 9pub use read::{GetRecordInput, ListRecordsInput, ListRecordsOutput, get_record, list_records}; 10pub use utils::*; 11pub use write::{ 12 CreateRecordInput, CreateRecordOutput, PutRecordInput, PutRecordOutput, create_record, 13 put_record, prepare_repo_write, 14};