website/src/main.rs

9 lines
133 B
Rust

use std::process;
fn main() {
if let Err(e) = nyf::run() {
eprintln!("error: {}", e);
process::exit(1);
}
}