moduforge-collaboration-client 0.6.5

moduforge 协作系统
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use std::sync::Arc;
use tokio::sync::RwLock;

pub mod client;
pub mod conn;
pub mod mapping;
pub mod mapping_v2;
pub mod provider;
pub mod types;
pub mod utils;

pub type ClientResult<T> = anyhow::Result<T>;
pub mod yrs {
    pub use yrs::*;
}

pub type AwarenessRef = Arc<RwLock<yrs::sync::Awareness>>;