photoncloud-monorepo/fiberlb/crates/fiberlb-server/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

11 lines
258 B
Rust

//! FiberLB server implementation
pub mod dataplane;
pub mod healthcheck;
pub mod metadata;
pub mod services;
pub use dataplane::DataPlane;
pub use healthcheck::{HealthChecker, spawn_health_checker};
pub use metadata::LbMetadataStore;
pub use services::*;