photoncloud-monorepo/fiberlb/crates/fiberlb-server/src/services/mod.rs
centra 3eeb303dcb feat: Batch commit for T039.S3 deployment
Includes all pending changes needed for nixos-anywhere:
- fiberlb: L7 policy, rule, certificate types
- deployer: New service for cluster management
- nix-nos: Generic network modules
- Various service updates and fixes

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-13 04:34:51 +09:00

19 lines
474 B
Rust

//! gRPC service implementations
mod loadbalancer;
mod pool;
mod backend;
mod listener;
mod health_check;
mod l7_policy;
mod l7_rule;
mod certificate;
pub use loadbalancer::LoadBalancerServiceImpl;
pub use pool::PoolServiceImpl;
pub use backend::BackendServiceImpl;
pub use listener::ListenerServiceImpl;
pub use health_check::HealthCheckServiceImpl;
pub use l7_policy::L7PolicyServiceImpl;
pub use l7_rule::L7RuleServiceImpl;
pub use certificate::CertificateServiceImpl;