Formatting...

This commit is contained in:
2021-08-12 15:48:02 +02:00
committed by dietrich
parent 26142084f6
commit 50da81889e
8 changed files with 44 additions and 49 deletions
+3 -3
View File
@@ -2,7 +2,6 @@ pub mod home;
pub mod list_links;
pub mod list_users;
/// Unwrap a result and return it's content, or return from the function with another expression.
#[macro_export]
macro_rules! unwrap_or_return {
@@ -22,7 +21,8 @@ macro_rules! unwrap_or_send {
Some(x) => x,
None => {
$orders.send_msg($result);
return;},
return;
}
}
};
}
}