mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-04-24 14:47:13 -04:00
11 lines
161 B
Protocol Buffer
11 lines
161 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
message FFIResponse {
|
|
bytes payload = 1;
|
|
FFIStatusCode code = 2;
|
|
}
|
|
enum FFIStatusCode {
|
|
Ok = 0;
|
|
Err = 1;
|
|
Internal = 2;
|
|
}
|