11 lines
267 B
Rust
11 lines
267 B
Rust
|
|
// vapora-worktree: Git worktree isolation for code-modifying agents
|
||
|
|
// Phase 3: Sandbox execution environment
|
||
|
|
|
||
|
|
pub mod error;
|
||
|
|
pub mod handle;
|
||
|
|
pub mod manager;
|
||
|
|
|
||
|
|
pub use error::{Result, WorktreeError};
|
||
|
|
pub use handle::WorktreeHandle;
|
||
|
|
pub use manager::WorktreeManager;
|