1 2 3 4 5 6
use crate::runtime::{EXIT_SUCCESS, ExitCode}; pub fn handle() -> ExitCode { println!("elph v{}", env!("CARGO_PKG_VERSION")); EXIT_SUCCESS }