Skip to main content

reifydb_sub_flow/
lib.rs

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