server: Fix misc clippy warnings

This commit is contained in:
Valentin Tolmer
2022-07-13 11:56:31 +02:00
committed by nitnelave
parent 24c6b4a879
commit 294ce77a47
2 changed files with 4 additions and 4 deletions

View File

@@ -47,7 +47,7 @@ impl std::string::ToString for Uuid {
#[macro_export]
macro_rules! uuid {
($s:literal) => {
crate::domain::handler::Uuid::try_from($s).unwrap()
$crate::domain::handler::Uuid::try_from($s).unwrap()
};
}