1 2 3 4 5 6 7 8
//! Sandbox teardown and resource cleanup helpers. use crate::error::BranchResult; /// Performs sandbox cleanup with a no-op default implementation. pub async fn cleanup_environment() -> BranchResult<()> { Ok(()) }