reifydb_core/interface/mod.rs
1// SPDX-License-Identifier: Apache-2.0
2// Copyright (c) 2026 ReifyDB
3
4use crate::event::EventBus;
5
6pub mod auth;
7pub mod catalog;
8pub mod cdc;
9pub mod change;
10pub mod consolidate;
11pub mod evaluate;
12pub mod flow;
13pub mod identifier;
14pub mod resolved;
15pub mod store;
16pub mod subscription;
17pub mod version;
18
19pub trait WithEventBus {
20 fn event_bus(&self) -> &EventBus;
21}