Co-authored-by: Tristan Poland (Trident_For_U) <tristanpoland@users.noreply.github.com>
29 lines
646 B
Rust
29 lines
646 B
Rust
use colored::Colorize;
|
|
|
|
pub fn print_splash() {
|
|
println!(
|
|
"{}",
|
|
format!(
|
|
r#"
|
|
&&&&&&&&&&&
|
|
&&&&&&&&&&&&&&&&&
|
|
&&&&&&&&&&&&&&&&&&&&&
|
|
&& &&&&&&&&&
|
|
&&&&&&&&&&&& &&&&&&&&&&&
|
|
&&&&&&&&&&&&& &&&&&&&&&&&&
|
|
&&&&&&&&&&&&& &&&&&&&&&&&&&
|
|
&&&&&&&&&&&& &&&&&&&&&&&&&
|
|
&&&&&&&&&&& &&&&&&&&&&&&
|
|
&&&&&&&&& &&
|
|
&&&&&&&&& &&
|
|
&&&&&&&&&&&&&&&&&&&&&
|
|
&&&&&&&&&&&&&&&&&
|
|
&&&&&&&&&&&
|
|
|
|
Version: {}
|
|
"#,
|
|
env!("CARGO_PKG_VERSION").color("yellow")
|
|
)
|
|
.bright_black()
|
|
);
|
|
}
|