mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-08-16 12:51:03 +00:00
10 lines
126 B
Protocol Buffer
10 lines
126 B
Protocol Buffer
![]() |
syntax = "proto3";
|
||
|
|
||
|
message WsError {
|
||
|
ErrorCode code = 1;
|
||
|
string msg = 2;
|
||
|
}
|
||
|
enum ErrorCode {
|
||
|
InternalError = 0;
|
||
|
}
|