···11+# Striker - Pico Strike Monitor
22+33+Striker is a TUI application written with Bevy + Ratatui for the purpose of montoring pico-strike devices.
44+55+Currently a MASSIVE WIP.
···11+/// Messages are events that should effect some update
22+/// to component states, or prompt Actions to be submitted.
33+/// Messages can be user input or from network updates.
44+#[derive(Debug, PartialEq, Eq)]
55+pub enum StrikeMessage {
66+ StartSearch,
77+ FinishSearch,
88+ FoundDevice,
99+ NextDevice,
1010+ PrevDevice,
1111+ MonitorDevice,
1212+ StopMonitoring,
1313+ Finish,
1414+}