gusto 09d99c0831
Add simulation engine
First stage of adding the simulation engine that was living in older versions of nomos-nod. It will change in the future generalising it for better compatibility.
2024-11-05 11:13:21 +01:00

11 lines
249 B
Rust

pub mod network;
pub mod node;
pub mod output_processors;
pub mod runner;
pub mod settings;
pub mod streaming;
pub mod warding;
static START_TIME: once_cell::sync::Lazy<std::time::Instant> =
once_cell::sync::Lazy::new(std::time::Instant::now);