rustytime_server/lib.rs
1#![forbid(unsafe_code)]
2#![cfg(feature = "integration")]
3
4pub mod db;
5pub mod docs;
6pub mod handlers;
7pub mod jobs;
8pub mod models;
9pub mod routes;
10pub mod schema;
11pub mod state;
12pub mod utils;
13
14use std::sync::OnceLock;
15use std::time::Instant;
16pub static START_TIME: OnceLock<Instant> = OnceLock::new();