- 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)
15 lines
515 B
Rust
15 lines
515 B
Rust
//! FlashDNS API - gRPC service definitions
|
|
//!
|
|
//! This crate provides:
|
|
//! - gRPC service definitions (ZoneService, RecordService)
|
|
//! - Generated protobuf types
|
|
|
|
/// Generated protobuf types
|
|
pub mod proto {
|
|
tonic::include_proto!("flashdns.v1");
|
|
}
|
|
|
|
pub use proto::record_service_client::RecordServiceClient;
|
|
pub use proto::record_service_server::{RecordService, RecordServiceServer};
|
|
pub use proto::zone_service_client::ZoneServiceClient;
|
|
pub use proto::zone_service_server::{ZoneService, ZoneServiceServer};
|