http_type/rc_rwlock/
type.rs

1use crate::*;
2
3pub type RcRwLock<T> = Rc<RwLock<T>>;