cargo fmt

This commit is contained in:
Marcin Kulik
2025-02-19 12:37:51 +01:00
parent b08147e9a9
commit 1a64fef0f9

View File

@@ -90,7 +90,11 @@ impl Session {
pub fn marker(&mut self, time: u64) {
let id = self.get_next_event_id();
let _ = self.broadcast_tx.send(Event::Marker(id, time, String::new()));
let _ = self
.broadcast_tx
.send(Event::Marker(id, time, String::new()));
self.stream_time = time;
self.last_event_time = Instant::now();
}