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