photoncloud-monorepo/chainfire/crates/chainfire-raft/src/lib.rs
centra 3eeb303dcb feat: Batch commit for T039.S3 deployment
Includes all pending changes needed for nixos-anywhere:
- fiberlb: L7 policy, rule, certificate types
- deployer: New service for cluster management
- nix-nos: Generic network modules
- Various service updates and fixes

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-13 04:34:51 +09:00

14 lines
390 B
Rust

//! Raft consensus for Chainfire distributed KVS
//!
//! This crate provides:
//! - Custom Raft implementation
//! - Network implementation for Raft RPC
// Custom Raft implementation
pub mod core;
// Common modules
pub mod network;
pub use core::{RaftCore, RaftConfig, RaftRole, VoteRequest, VoteResponse, AppendEntriesRequest, AppendEntriesResponse};
pub use network::RaftNetworkError;