tramp/src/common/console.rs
2025-01-15 11:03:49 -06:00

6 lines
109 B
Rust

use std::process;
pub fn fatal(msg: String) -> ! {
eprintln!("fatal: {}", msg);
process::exit(-1);
}