Rust · 568 bytes Raw Blame History
1 // Protocol definitions and handlers - Phase 1.1
2 //
3 // Safety: All protocols implement authentication and validation
4 // Privacy: Protocol messages don't leak sensitive information
5 // Transparency: Protocol interactions are logged
6
7 pub mod messages {
8 // Re-export protobuf generated code
9 // TODO: Include generated protobuf code here
10
11 pub mod node {
12 // Placeholder for generated node.proto code
13 // Will be generated by build.rs
14 }
15 }
16
17 // Protocol version for compatibility checking
18 pub const PROTOCOL_VERSION: &str = "zephyrfs/1.0.0";