Migrated to TTP.

This commit is contained in:
Ben Markendorf 2026-03-19 22:26:34 +01:00
commit efc4bc9aa4
10 changed files with 40 additions and 40 deletions

View file

@ -1,10 +1,10 @@
use crate::APP_STATE;
use crate::omikron::omikron_connection::OmikronConnection;
use dashmap::DashMap;
use epsilon_core::{CommunicationType, CommunicationValue, DataTypes, DataValue, rand_u32};
use std::sync::LazyLock;
use std::time::Instant;
use tokio::time::Duration;
use ttp_core::{CommunicationType, CommunicationValue, DataTypes, DataValue, rand_u32};
// Dedicated lightweight ping tracking
static PING_TIMES: LazyLock<DashMap<u32, Instant>> = LazyLock::new(|| DashMap::new());