feat: Add SSH authentication interceptor and update proto definitions

This commit is contained in:
GW_MC
2026-03-21 03:06:56 +00:00
parent 261e6b1bdb
commit 2fcdc7d0df
5 changed files with 82 additions and 86 deletions

View File

@@ -1,9 +1,13 @@
//! 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;
pub use tonic_async_interceptor::*;