made the /bk_week_get function properly... and a bunch more that i forgor
This commit is contained in:
+6
-4
@@ -1,9 +1,10 @@
|
||||
#[macro_export]
|
||||
macro_rules! rs_println {
|
||||
($($arg:tt)*) => {
|
||||
println!("{}RS - {}",
|
||||
println!("{}RS - {}{}",
|
||||
"\x1b[31m",
|
||||
format!($($arg)*)
|
||||
format!($($arg)*),
|
||||
"\x1b[0m"
|
||||
);
|
||||
};
|
||||
}
|
||||
@@ -12,10 +13,11 @@ macro_rules! rs_println {
|
||||
#[macro_export]
|
||||
macro_rules! rs_errln {
|
||||
($($arg:tt)*) => {
|
||||
println!("{}ERROR{} RS - {}",
|
||||
println!("{}ERROR{} RS - {}{}",
|
||||
"\x1b[41m",
|
||||
"\x1b[0m\x1b[31m",
|
||||
format!($($arg)*)
|
||||
format!($($arg)*),
|
||||
"\x1b[0m"
|
||||
);
|
||||
process::exit(1);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user