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

35 lines
1.3 KiB
Rust
Raw Normal View History

use colored::Colorize;
pub fn print_splash() {
2025-01-11 15:28:01 -05:00
println!(
"# #
# Welcome to the Zenyx terminal #
2025-01-11 15:28:01 -05:00
# #"
);
println!(
"{}",
format!(
r#"
Version: {}
"#,
env!("CARGO_PKG_VERSION").green()
)
.bright_yellow()
);
}