orb8_proto/
lib.rs

1//! gRPC protocol definitions for orb8
2//!
3//! Defines:
4//! - `OrbitAgentService` - gRPC service interface for agents
5//! - Query and response message types
6//! - Streaming event types
7//!
8//! Generated from `proto/orb8.proto`.
9
10pub mod v1 {
11    tonic::include_proto!("orb8.v1");
12}
13
14pub use v1::orbit_agent_service_client::OrbitAgentServiceClient;
15pub use v1::orbit_agent_service_server::{OrbitAgentService, OrbitAgentServiceServer};
16pub use v1::*;