1 2 3 4 5 6
//! Idempotent repository implementations. pub mod memory_repository; pub mod redb_repository; pub use memory_repository::MemoryIdempotentRepository; pub use redb_repository::RedbIdempotentRepository;