claw-branch 0.1.2

Fork, simulate, and merge engine for ClawDB agents.
Documentation
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(())
}