//! MIR extraction and translation
pubmodcharon_llbc;pubmodtranslator;usecrate::cfg::Cfg;useanyhow::Result;usestd::path::Path;/// Extract CFGs from a Rust project using Charon
pubfnextract_rust_cfg(_project_path:&Path)->Result<Vec<Cfg>>{// TODO: Implement orchestrator in Milestone 2
Ok(vec![])}