1 2 3 4 5 6 7 8 9 10
use anyhow::Result; use oxygraphis::{cli, process_matches}; fn main() -> Result<()> { let matches = cli().get_matches(); process_matches(&matches)?; Ok(()) }