Merge branch 'worktree-agent-a2650e91d2bd39ca2' into develop

This commit is contained in:
2026-06-07 11:14:02 +02:00
14 changed files with 1908 additions and 3 deletions

View File

@ -17,6 +17,7 @@ pub mod eventbus;
pub mod fs;
pub mod git;
pub mod id;
pub mod orchestrator;
pub mod process;
pub mod pty;
pub mod remote;
@ -28,6 +29,10 @@ pub use eventbus::TokioBroadcastEventBus;
pub use fs::LocalFileSystem;
pub use git::Git2Repository;
pub use id::UuidGenerator;
pub use orchestrator::{
process_request_file, FsOrchestratorWatcher, OrchestratorResponse, OrchestratorWatchHandle,
REQUESTS_SUBDIR,
};
pub use process::LocalProcessSpawner;
pub use pty::PortablePtyAdapter;
pub use remote::{remote_host, LocalHost};