- netboot-base.nix with SSH key auth - Launch scripts for node01/02/03 - Node configuration.nix and disko.nix - Nix modules for first-boot automation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
20 lines
319 B
Rust
20 lines
319 B
Rust
// Re-export proto modules
|
|
pub mod kvrpc {
|
|
tonic::include_proto!("kvrpc");
|
|
}
|
|
|
|
pub mod pdpb {
|
|
tonic::include_proto!("pdpb");
|
|
}
|
|
|
|
pub mod raft_server {
|
|
tonic::include_proto!("raftpb");
|
|
}
|
|
|
|
pub mod chainfire {
|
|
tonic::include_proto!("chainfire.v1");
|
|
}
|
|
|
|
pub mod sqlrpc {
|
|
tonic::include_proto!("sqlrpc");
|
|
}
|