mirror of
https://github.com/cupcakearmy/cryptgeon.git
synced 2025-04-04 00:57:08 +00:00
11 lines
209 B
Rust
11 lines
209 B
Rust
use std::collections::HashMap;
|
|
use std::sync::Arc;
|
|
use tokio::sync::Mutex;
|
|
|
|
#[derive(Clone)]
|
|
pub struct SharedState {
|
|
pub locks: LockMap,
|
|
}
|
|
|
|
pub type LockMap = Arc<Mutex<HashMap<String, Arc<Mutex<()>>>>>;
|