intermodal/bin/update-readme/src/main.rs

11 lines
135 B
Rust
Raw Normal View History

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