optimized the UI code

This commit is contained in:
AnonimAnonim2245 2024-01-18 15:01:19 +02:00
parent 3fc3423f7e
commit 236db88d7a

View File

@ -17,12 +17,12 @@ macro_rules! print_emoji {
macro_rules! warn {
($fmt:literal, $ex:expr) => {{
print_emoji!("⚠️ ", "!", red, $fmt ,$ex);
print_emoji!("⚠️ ", "!", red, $fmt, $ex);
}};
}
macro_rules! success {
($fmt:literal, $ex:expr) => {{
print_emoji!("", "", green, $fmt ,$ex);
print_emoji!("", "", green, $fmt, $ex);
}};
}
}