stoptime-rs/src/handlers.rs

18 lines
327 B
Rust
Raw Normal View History

//! The root handlers
use rocket::get;
pub mod company;
pub mod customers;
pub mod graphql;
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!()
}