python_script_runner/lib.rs
1// FILE: lib.rs
2// PURPOSE: Root module for PYTHON_SCRIPT_RUNNER
3// GOAL: Re-export public APIs for external consumers
4// RUNS TO: External crates via cargo crate usage
5
6// ═══════════════════════════════════════════════════════════════════════════════
7// SECTION MAP
8// ═══════════════════════════════════════════════════════════════════════════════
9// python_script_runner → Execute Python scripts from Rust with async support
10// ═══════════════════════════════════════════════════════════════════════════════
11
12pub mod python_script_runner;