diff options
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index ee540af..e96b736 100644 --- a/src/main.rs +++ b/src/main.rs | |||
@@ -50,7 +50,7 @@ async fn main() { | |||
50 | 50 | ||
51 | let (tx, _) = channel(32); | 51 | let (tx, _) = channel(32); |
52 | 52 | ||
53 | let ping_map: DashMap<String, (String, bool)> = DashMap::new(); | 53 | let ping_map: PingMap = DashMap::new(); |
54 | 54 | ||
55 | let shared_state = Arc::new(AppState { db, ping_send: tx, ping_map }); | 55 | let shared_state = Arc::new(AppState { db, ping_send: tx, ping_map }); |
56 | 56 | ||