photoncloud-monorepo/flashdns/crates/flashdns-api/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

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};