1 2 3 4 5 6 7 8 9 10
use std::process; use std::env; fn main() { let config = lnls::Config::from(env::args()); if let Err(error) = lnls::run(config) { println!("Programm exited with the following error:\n{}", error); process::exit(1); } }