tasker-orchestration 0.1.4

Orchestration system for tasker workflow coordination
1
2
3
4
5
6
7
8
9
10
//! # Orchestration Health Service
//!
//! TAS-76: Health check logic extracted from web/handlers/health.rs.
//!
//! This module provides health check functionality independent of the HTTP layer,
//! making it available to both REST (Axum) and future gRPC (Tonic) endpoints.

mod service;

pub use service::HealthService;