intermodal/bin/update-readme/src/main.rs
Casey Rodarmor 1f5b829742
Add table of contents to readme
type: documentation
2020-04-07 19:00:48 -07:00

11 lines
135 B
Rust

mod bep;
mod common;
mod opt;
mod status;
use crate::common::*;
fn main() -> Result<(), Box<dyn Error>> {
Opt::from_args().run()
}