samod-core 0.11.0

the core library for the samod automerge-repo implementation
Documentation
1
2
3
4
5
6
7
8
9
use crate::ephemera::EphemeralMessage;

use super::SyncMessage;

#[derive(Clone, Debug)]
pub(crate) enum DocMessage {
    Sync(SyncMessage),
    Ephemeral(EphemeralMessage),
}