- 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)
10 lines
298 B
Rust
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::*;
|