mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
12 lines
161 B
Protocol Buffer
12 lines
161 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
message FFIResponse {
|
|
bytes payload = 1;
|
|
FFIStatusCode code = 2;
|
|
}
|
|
enum FFIStatusCode {
|
|
Ok = 0;
|
|
Err = 1;
|
|
Internal = 2;
|
|
}
|