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