Add exec-server crate and tests

Co-authored-by: Codex <noreply@openai.com>
This commit is contained in:
starr-openai
2026-03-16 17:30:51 -07:00
parent d0a693e541
commit fd58e4621f
12 changed files with 1314 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
mod client;
mod protocol;
mod server;
pub use client::ExecServerClient;
pub use client::ExecServerError;
pub use client::ExecServerLaunchCommand;
pub use client::ExecServerProcess;
pub use protocol::ExecExitedNotification;
pub use protocol::ExecOutputDeltaNotification;
pub use protocol::ExecOutputStream;
pub use protocol::ExecParams;
pub use protocol::ExecResponse;
pub use protocol::InitializeParams;
pub use protocol::InitializeResponse;
pub use protocol::TerminateParams;
pub use protocol::TerminateResponse;
pub use protocol::WriteParams;
pub use protocol::WriteResponse;
pub use server::run_main;