mod mounts; mod pid_one; use crate::pid_one::check_pid; fn main() -> Result<(), Box> { println!("Initializing your system."); check_pid().expect("Runned not as PID 1."); Ok(()) }