ginmi 0.1.3

An asynchrounous gNMI client to interact with and manage network devices.
Documentation
//! A Rust client for the gRPC Network Management Interface
//!
//! Provides a Client to modify and retrieve configuration from target network devices,
//! as well as various telemetry data.

#![cfg_attr(docsrs, feature(doc_cfg))]
mod auth;
pub mod client;
pub mod error;

pub(crate) mod gen {
    pub mod gnmi {
        tonic::include_proto!("gnmi");
    }

    pub mod gnmi_ext {
        tonic::include_proto!("gnmi_ext");
    }

    pub mod target {
        tonic::include_proto!("target");
    }

    pub mod google {
        pub mod protobuf {
            tonic::include_proto!("google.protobuf");
        }
    }
}