shredlink-proto 0.1.0

Protocol buffer definitions for Shredlink gRPC services
Documentation
//! # Shredlink Protocol Buffers
//! 
//! This crate provides Protocol Buffer definitions and generated Rust code for the Shredlink gRPC services.
//! 
//! ## Usage
//! 
//! Add this to your `Cargo.toml`:
//! 
//! ```toml
//! [dependencies]
//! shredlink-proto = "0.1.0"


// Include the generated protobuf code
pub mod shredlink {
    tonic::include_proto!("shredlink");
}

// Re-export prost_types for timestamp handling
pub use prost_types::Timestamp;