Events #11

Merged
phoenix merged 5 commits from events into v0.3.0 2026-06-24 22:44:14 -04:00
Showing only changes of commit c66085837c - Show all commits
+1 -6
View File
@@ -51,12 +51,7 @@ impl Service {
}
};
let events = if events.is_some() {
events.unwrap()
} else {
Vec::new()
};
let events = events.unwrap_or_default();
for event in events {
println!("Event: {event:?}");
}