Files
the-daily-epub/src/web/dashboard/jobs.rs
T

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()
}