store_conformance.rs 181 B

123456789
  1. #![allow(missing_docs)]
  2. use kuatia_storage::mem_store::InMemoryStore;
  3. async fn new_store() -> InMemoryStore {
  4. InMemoryStore::new()
  5. }
  6. kuatia_storage::store_tests!(new_store);