Join tasks using join! macro

This commit is contained in:
Manuel Thalmann 2025-04-06 22:11:25 +02:00
parent 519ce8dd85
commit fdb0b43ce8
Signed by: manuth
SSH key fingerprint: SHA256:HsMLC+7kJWALP6YCYCoopxNbUnghwSGLVcG76SECT5c

View file

@ -39,6 +39,6 @@ fn main() {
}
};
trpl::join3(tx1_fut, tx_fut, rx_fut).await;
trpl::join!(tx1_fut, tx_fut, rx_fut);
});
}