//! Dashboard: jobs pages. Filled in by web dashboard plan step 6. use axum::Router; use crate::server::AppState; /// Routes contributed by this page group (merged by `dashboard::router`). pub fn routes() -> Router { Router::new() }