stoptime-rs/server/src/handlers.rs

17 lines
310 B
Rust

//! The root handlers
use rocket::get;
pub mod company;
pub mod customers;
pub mod invoices;
pub mod timeline;
/// Presents the dashboard/overview as start/home view
///
/// It lists the running tasks and projects per customer and shows a global summary.
#[get("/")]
pub fn index() {
unimplemented!()
}