automatic cargo CI changes
This commit is contained in:
parent
ef01e4d808
commit
77ced4b277
|
@ -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::*;
|
||||
|
|
|
@ -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 }
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue