Skip to main content

recoco_core/setup/
mod.rs

1// ReCoco is a Rust-only fork of CocoIndex, by [CocoIndex](https://CocoIndex)
2// Original code from CocoIndex is copyrighted by CocoIndex
3// SPDX-FileCopyrightText: 2025-2026 CocoIndex (upstream)
4// SPDX-FileContributor: CocoIndex Contributors
5//
6// All modifications from the upstream for ReCoco are copyrighted by Knitli Inc.
7// SPDX-FileCopyrightText: 2026 Knitli Inc. (ReCoco)
8// SPDX-FileContributor: Adam Poulemanos <adam@knit.li>
9//
10// Both the upstream CocoIndex code and the ReCoco modifications are licensed under the Apache-2.0 License.
11// SPDX-License-Identifier: Apache-2.0
12
13mod auth_registry;
14#[cfg(feature = "persistence")]
15mod db_metadata;
16#[cfg(feature = "persistence")]
17mod driver;
18mod states;
19
20pub mod components;
21pub mod flow_features;
22
23pub use auth_registry::AuthRegistry;
24#[cfg(feature = "persistence")]
25pub use driver::*;
26pub use states::*;