15 lines
377 B
Rust
15 lines
377 B
Rust
//! NxMesh Protocol Buffers
|
|
//!
|
|
//! This crate contains the gRPC protocol definitions for master-agent communication.
|
|
#![forbid(clippy::unwrap_used, clippy::panic, unsafe_code)]
|
|
#![deny(clippy::expect_used)]
|
|
|
|
pub mod agent {
|
|
tonic::include_proto!("nxmesh.agent.v1");
|
|
}
|
|
|
|
pub use agent::*;
|
|
pub mod auth;
|
|
#[allow(ambiguous_glob_reexports)]
|
|
pub use tonic_async_interceptor::*;
|