Skip to main content

reifydb_sub_flow/
lib.rs

1// SPDX-License-Identifier: Apache-2.0
2// Copyright (c) 2025 ReifyDB
3
4#![cfg_attr(not(debug_assertions), deny(warnings))]
5
6pub mod builder;
7pub(crate) mod catalog;
8pub(crate) mod deferred;
9pub mod engine;
10#[cfg(reifydb_target = "native")]
11pub mod ffi;
12#[allow(dead_code)]
13pub mod operator;
14pub mod subsystem;
15pub(crate) mod testing;
16pub mod transaction;
17
18pub(crate) use operator::Operator;
19pub(crate) mod transactional;