mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-11-02 04:04:43 +08:00
refactor(scheduler): move scheduler to new crate to support workflows in multiple crates (#1681)
This commit is contained in:
@ -21,9 +21,9 @@ pub use self::{api::*, encryption::*};
|
||||
use crate::{configs::settings, consts, core::errors};
|
||||
|
||||
#[cfg(not(feature = "olap"))]
|
||||
type StoreType = storage_impl::database::store::Store;
|
||||
pub type StoreType = storage_impl::database::store::Store;
|
||||
#[cfg(feature = "olap")]
|
||||
type StoreType = storage_impl::database::store::ReplicaStore;
|
||||
pub type StoreType = storage_impl::database::store::ReplicaStore;
|
||||
|
||||
#[cfg(not(feature = "kv_store"))]
|
||||
pub type Store = RouterStore<StoreType>;
|
||||
|
||||
Reference in New Issue
Block a user