1 2 3 4 5 6 7 8 9 10 11 12
mod cli; mod errors; mod graph; mod parse; mod render; fn main() { let app = cli::StructiagramOptions::parse(); if let Err(err) = app.exec() { eprintln!("{err}"); } }