zero-to-production/src/idempotency/mod.rs
2022-03-13 19:41:50 +00:00

7 lines
183 B
Rust

mod key;
mod persistence;
pub use key::IdempotencyKey;
pub use persistence::get_saved_response;
pub use persistence::save_response;
pub use persistence::{try_processing, NextAction};