http_type/arc_rwlock/
type.rs

1use crate::*;
2
3pub type ArcRwLock<T> = Arc<RwLock<T>>;