shredlink_proto/lib.rs
1//! # Shredlink Protocol Buffers
2//!
3//! This crate provides Protocol Buffer definitions and generated Rust code for the Shredlink gRPC services.
4//!
5//! ## Usage
6//!
7//! Add this to your `Cargo.toml`:
8//!
9//! ```toml
10//! [dependencies]
11//! shredlink-proto = "0.1.0"
12
13
14// Include the generated protobuf code
15pub mod shredlink {
16 tonic::include_proto!("shredlink");
17}
18
19// Re-export prost_types for timestamp handling
20pub use prost_types::Timestamp;