1 2 3 4 5 6 7 8 9 10 11 12
use dbgen::{ cli::{run, Args}, span::Registry, }; use structopt::StructOpt; fn main() { let mut registry = Registry::default(); if let Err(e) = run(Args::from_args(), &mut registry) { eprintln!("{}", registry.describe(&e)); } }