Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01NHyYupFdBiR4VfoUM7NjSM
11 lines
250 B
Rust
11 lines
250 B
Rust
//! 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<AppState> {
|
|
Router::new()
|
|
}
|