Skip to main content

task_graph_mcp/dashboard/
mod.rs

1//! Web dashboard HTTP server module.
2//!
3//! This module provides an HTTP server for the web dashboard UI.
4//! It is enabled when the `--ui=web` CLI option is passed.
5
6mod server;
7pub mod templates;
8
9pub use server::{
10    DashboardHandle, DashboardServer, DashboardStatus, start_server, start_server_with_retry,
11};