oxygraphis 0.1.6

Algorithms and structures on ecological graphs command line interface.
Documentation
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(())
}