en/src/lib.rs
2025-12-24 12:45:14 -03:00

13 lines
225 B
Rust

use std::{sync, time};
pub mod prelude {
pub use crate::log;
}
pub mod types;
pub mod router;
pub mod syntax;
pub mod dev;
pub static ONSET: sync::LazyLock<time::Instant> =
sync::LazyLock::new(time::Instant::now);