reifydb_engine/flow/mod.rs
1// Copyright (c) reifydb.com 2025
2// This file is licensed under the AGPL-3.0-or-later, see license.md file
3
4//! Flow compilation module - compiles RQL plans into Flows
5//!
6//! This module contains the flow compiler that was moved from reifydb-rql to avoid
7//! lifetime issues with async recursion and generic CommandTransaction types.
8
9mod compiler;
10
11pub use compiler::compile_flow;