mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
* feat: bypass realtime event * chore: use user device id * chore: send realtime update * chore: setup realtime recever * chore: setup realtime recever * chore: clippy * chore: update collab rev * chore: update realtime subscription * chore: fix test * chore: fmt * test: fix flutter test
8 lines
148 B
Rust
8 lines
148 B
Rust
use flowy_derive::ProtoBuf;
|
|
|
|
#[derive(ProtoBuf, Default, Clone)]
|
|
pub struct RealtimePayloadPB {
|
|
#[pb(index = 1)]
|
|
pub(crate) json_str: String,
|
|
}
|