1 2 3 4 5 6 7 8 9 10 11 12 13 14
mod cli; mod engine; mod error; mod output; mod schema_contract; mod waveform; pub mod expr; pub use crate::error::WavepeekError; pub fn run_cli() -> Result<(), crate::error::WavepeekError> { cli::run() }