reifydb_engine/transaction/mod.rs
1// SPDX-License-Identifier: Apache-2.0
2// Copyright (c) 2025 ReifyDB
3
4//! Engine-side helpers around the transaction layer. The `operation/` submodule wraps the typed catalog and
5//! storage operations the VM performs inside a transaction so the dispatch handlers can call them by name rather
6//! than wiring up the encoded-key plumbing themselves.
7
8#[allow(dead_code)]
9pub mod operation;