feat: added basic beacon instance management UI

This commit is contained in:
Andrew Rioux
2025-02-24 00:35:51 -05:00
parent 7778e9b454
commit a57a95a98a
7 changed files with 477 additions and 27 deletions

View File

@@ -11,11 +11,12 @@ pub mod error;
mod router;
#[derive(Clone)]
#[derive(Clone, Debug)]
#[non_exhaustive]
pub enum BeaconEvent {
NewBeacon(String),
Checkin(String),
BeaconUpdate(String),
BeaconCommandFinished(String, i64)
}