Update client_manager.rs

swapped lock type for tokio lock
This commit is contained in:
michael-bailey 2022-02-28 17:45:57 +00:00
parent 77f4bf5f08
commit ff85d1c28b
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ use std::collections::HashMap;
use std::sync::Arc;
use futures::future::{join_all, select};
use futures::lock::Mutex;
use tokio::sync::Mutex;
use tokio::select;
use tokio::sync::mpsc::{channel, Receiver, Sender};