photoncloud-monorepo/k8shost/crates/k8shost-proto/src/lib.rs
centra a7ec7e2158 Add T026 practical test + k8shost to flake + workspace files
- Created T026-practical-test task.yaml for MVP smoke testing
- Added k8shost-server to flake.nix (packages, apps, overlays)
- Staged all workspace directories for nix flake build
- Updated flake.nix shellHook to include k8shost

Resolves: T026.S1 blocker (R8 - nix submodule visibility)
2025-12-09 06:07:50 +09:00

10 lines
298 B
Rust

//! gRPC protocol definitions for k8shost
//!
//! This module contains the generated gRPC client and server code for the k8shost API.
//! The protobuf definitions are in proto/k8s.proto and are compiled at build time.
pub mod k8shost {
tonic::include_proto!("k8shost");
}
pub use k8shost::*;