zagens-cli 0.8.3

Zagens headless CLI + HTTP/SSE runtime sidecar (`zagens`, `zagens-runtime` binaries)
Documentation
1
2
3
4
5
6
7
8
9
10
//! Engine handle — TUI-side type alias over the generic
//! [`zagens_core::engine::handle::EngineHandle`] (M1 strangler step).
//!
//! The concrete sandbox policy and `request_user_input` payload types stay
//! in tui; this alias bakes them in so existing call sites do not change.

pub type EngineHandle = zagens_core::engine::handle::EngineHandle<
    crate::sandbox::SandboxPolicy,
    crate::tools::user_input::UserInputResponse,
>;