fix: add connection status variables for startup handling

This commit is contained in:
MayaTheShy
2025-11-09 16:57:40 -05:00
parent 532e1ddda5
commit ebd9b07b9f

View File

@@ -49,6 +49,10 @@ enum Command {
Shutdown,
}
// Connection status for startup
static CONNECTION_SUCCESS: AtomicBool = AtomicBool::new(false);
static CONNECTION_FAILED: AtomicBool = AtomicBool::new(false);
impl Migrate for BridgeState { type Old = Self; }
impl ClientState for BridgeState {