reifydb_engine/flow/mod.rs
1// SPDX-License-Identifier: AGPL-3.0-or-later
2// Copyright (c) 2026 ReifyDB
3
4//! Engine-side compiler that turns a CREATE FLOW statement into the dataflow definition the `sub-flow` runtime
5//! consumes. This module is the bridge between RQL's flow AST and the operator graph the streaming runtime
6//! actually evaluates.
7
8pub mod compiler;