async mutex

This commit is contained in:
JMARyA 2023-01-25 08:56:14 +01:00
parent cef45e43a6
commit 5895bb7d56
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
3 changed files with 7 additions and 2 deletions

View file

@ -3,7 +3,8 @@ mod msg;
mod notification;
mod pages;
use std::sync::{Arc, Mutex};
use std::sync::Arc;
use tokio::sync::Mutex;
use actix_web::*;