chore(indexeddb): Rename cryptostore => crypto_store

… for consistency with state_store.
This commit is contained in:
Jonas Platte
2022-08-04 10:46:07 +02:00
committed by Jonas Platte
parent 694c36d741
commit df7895d2c6
2 changed files with 3 additions and 3 deletions

View File

@@ -4,14 +4,14 @@ use matrix_sdk_base::store::{StoreConfig, StoreError};
use thiserror::Error;
#[cfg(feature = "e2e-encryption")]
mod cryptostore;
mod crypto_store;
mod safe_encode;
mod state_store;
#[cfg(feature = "e2e-encryption")]
pub use cryptostore::IndexeddbStore as CryptoStore;
pub use crypto_store::IndexeddbStore as CryptoStore;
#[cfg(feature = "e2e-encryption")]
use cryptostore::IndexeddbStoreError;
use crypto_store::IndexeddbStoreError;
pub use state_store::{
IndexeddbStore as StateStore, IndexeddbStoreBuilder as StateStoreBuilder,
MigrationConflictStrategy,