1 2 3 4 5 6 7 8 9 10 11 12 13
//! Automerge-specific helpers mod edit; mod init; mod meta; use automerge::AutoCommit; pub(crate) use edit::*; pub(crate) use init::*; pub(crate) use meta::*; /// Automerge document type, set to [AutoCommit]. pub type AutomergeDoc = AutoCommit;