automatic cargo CI changes

This commit is contained in:
cscherrNT 2024-03-08 17:09:51 +00:00 committed by github-actions[bot]
parent ef01e4d808
commit 77ced4b277
2 changed files with 2 additions and 5 deletions

View File

@ -7,7 +7,7 @@
//! This way, we have a distribution api, that clients can use to get any messages they have not
//! yet received.
use libpt::log::{debug, info};
use libpt::log::info;
mod routes;
use routes::*;

View File

@ -51,10 +51,7 @@ impl Item {
let seq = SEQUENCE.load(std::sync::atomic::Ordering::Relaxed);
SEQUENCE.store(seq + 1, std::sync::atomic::Ordering::Relaxed);
Self {
body: msg,
seq,
}
Self { body: msg, seq }
}
}