Files
MercuryToolbox/crates/proctree/src/main.rs
T

7 lines
145 B
Rust

//! Binary entry point for `proctree`.
#![allow(clippy::multiple_crate_versions)]
fn main() {
std::process::exit(proctree::main_entry());
}