···1+# Striker - Pico Strike Monitor
2+3+Striker is a TUI application written with Bevy + Ratatui for the purpose of montoring pico-strike devices.
4+5+Currently a MASSIVE WIP.
···1+/// Messages are events that should effect some update
2+/// to component states, or prompt Actions to be submitted.
3+/// Messages can be user input or from network updates.
4+#[derive(Debug, PartialEq, Eq)]
5+pub enum StrikeMessage {
6+ StartSearch,
7+ FinishSearch,
8+ FoundDevice,
9+ NextDevice,
10+ PrevDevice,
11+ MonitorDevice,
12+ StopMonitoring,
13+ Finish,
14+}