orchestrator-client 0.3.0

Shared control-plane client types and connection logic for the Agent Orchestrator
Documentation
1
2
3
4
5
6
7
8
9
10
#![cfg_attr(
    not(test),
    deny(clippy::panic, clippy::unwrap_used, clippy::expect_used)
)]

pub mod config;
pub mod connect;

pub use config::ControlPlaneConfig;
pub use connect::{MAX_GRPC_DECODE_SIZE, TransportKind, connect};