zenyx-engine-telemetry/engine/src/core/splash.rs

30 lines
1.1 KiB
Rust
Raw Normal View History

use colored::Colorize;
pub fn print_splash() {
println!(
"{}",
format!(
r#"
Version: {}
"#,
env!("CARGO_PKG_VERSION").green()
)
.bright_yellow()
);
}