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