diff options
author | FxQnLr <[email protected]> | 2023-10-29 21:09:46 +0100 |
---|---|---|
committer | FxQnLr <[email protected]> | 2023-10-29 21:09:46 +0100 |
commit | dd303dc41e4d500e48760f79351720cc2c1c9ffe (patch) | |
tree | b730a1da1e0e58e12494bbab88076d403f4ccd97 /src/main.rs | |
parent | 84c32953ae5f52be44af4b48381747f55cb04f4a (diff) | |
download | webol-dd303dc41e4d500e48760f79351720cc2c1c9ffe.tar webol-dd303dc41e4d500e48760f79351720cc2c1c9ffe.tar.gz webol-dd303dc41e4d500e48760f79351720cc2c1c9ffe.zip |
add ip to database and use for ping, remove arc from pingmap
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 762a817..ee540af 100644 --- a/src/main.rs +++ b/src/main.rs | |||
@@ -52,7 +52,7 @@ async fn main() { | |||
52 | 52 | ||
53 | let ping_map: DashMap<String, (String, bool)> = DashMap::new(); | 53 | let ping_map: DashMap<String, (String, bool)> = DashMap::new(); |
54 | 54 | ||
55 | let shared_state = Arc::new(AppState { db, ping_send: tx, ping_map: Arc::new(ping_map) }); | 55 | let shared_state = Arc::new(AppState { db, ping_send: tx, ping_map }); |
56 | 56 | ||
57 | let app = Router::new() | 57 | let app = Router::new() |
58 | .route("/start", post(start)) | 58 | .route("/start", post(start)) |