Add generic RPC server glue to exec-server stub

Introduce API-agnostic server envelope parsing/encoding and a tiny method-registration router in the initialize-only exec-server slice.

Co-authored-by: Codex <noreply@openai.com>
This commit is contained in:
starr-openai
2026-03-18 13:59:41 -07:00
parent 76071974bb
commit 16ff474725
3 changed files with 185 additions and 67 deletions

View File

@@ -1,5 +1,6 @@
mod client;
mod protocol;
mod rpc;
mod server;
mod server_process;