Skip to content

Commit

Permalink
[#172] rename RUPRING_TEXT => DEFAULT_BANNER_TEXT
Browse files Browse the repository at this point in the history
  • Loading branch information
myyrakle committed Dec 14, 2024
1 parent 6042862 commit cef9831
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rupring/src/core/banner.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
const RUPRING_TEXT: &'static str = r#",------. ,--.
const DEFAULT_BANNER_TEXT: &'static str = r#",------. ,--.
| .--. ',--.,--. ,---. ,--.--.`--',--,--, ,---.
| '--'.'| || || .-. || .--',--.| \| .-. |
| |\ \ ' '' '| '-' '| | | || || |' '-' '
`--' '--' `----' | |-' `--' `--'`--''--'.`- /
`--' `---' "#;

pub fn print_banner() {
println!("{}", RUPRING_TEXT);
println!("{}", DEFAULT_BANNER_TEXT);
print_app_info();
println!("");
}
Expand Down

0 comments on commit cef9831

Please sign in to comment.