Skip to main content

qubit_cas/executor/
mod.rs

1/*******************************************************************************
2 *
3 *    Copyright (c) 2025 - 2026 Haixing Hu.
4 *
5 *    SPDX-License-Identifier: Apache-2.0
6 *
7 *    Licensed under the Apache License, Version 2.0.
8 *
9 ******************************************************************************/
10//! CAS executor and builder modules and re-exports.
11
12mod cas_builder;
13mod cas_executor;
14
15pub use cas_builder::CasBuilder;
16pub use cas_executor::CasExecutor;