mirror of
https://github.com/matrix-org/matrix-rust-sdk.git
synced 2026-05-14 19:16:02 -04:00
chore(indexeddb): Rename cryptostore => crypto_store
… for consistency with state_store.
This commit is contained in:
committed by
Jonas Platte
parent
694c36d741
commit
df7895d2c6
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user