1 2 3 4 5 6 7 8
use pingrep::cli; use pingrep::errors::WhateverResult; #[snafu::report] fn main() -> WhateverResult<()> { cli::main()?; Ok(()) }