Skip to main content

reifydb_store_single/
config.rs

1// SPDX-License-Identifier: Apache-2.0
2// Copyright (c) 2025 ReifyDB
3
4use reifydb_core::event::EventBus;
5
6use crate::hot::tier::HotTier;
7
8#[derive(Clone)]
9pub struct SingleStoreConfig {
10	pub hot: Option<HotConfig>,
11	pub event_bus: EventBus,
12}
13
14#[derive(Clone)]
15pub struct HotConfig {
16	pub storage: HotTier,
17}