mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-12-20 19:55:24 +00:00
14 lines
210 B
Rust
14 lines
210 B
Rust
|
|
use flowy_derive::ProtoBuf;
|
||
|
|
|
||
|
|
#[derive(ProtoBuf, Default)]
|
||
|
|
pub struct FFIResponse {
|
||
|
|
#[pb(index = 1)]
|
||
|
|
event: String,
|
||
|
|
|
||
|
|
#[pb(index = 2)]
|
||
|
|
payload: Vec<u8>,
|
||
|
|
|
||
|
|
#[pb(index = 3)]
|
||
|
|
error: String,
|
||
|
|
}
|