zero-to-production/src/idempotency/mod.rs

7 lines
183 B
Rust
Raw Normal View History

2022-03-13 19:36:44 +00:00
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};