meerkat-contracts 0.3.3

Wire format contracts and capability registry for Meerkat
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Canonical wire response types.

mod event;
mod params;
mod result;
mod session;
mod usage;

pub use event::WireEvent;
pub use params::{CommsParams, CoreCreateParams, HookParams, SkillsParams, StructuredOutputParams};
pub use result::WireRunResult;
pub use session::{WireSessionInfo, WireSessionSummary};
pub use usage::WireUsage;