mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
12 lines
179 B
Protocol Buffer
12 lines
179 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
message WsError {
|
|
ErrorCode code = 1;
|
|
string msg = 2;
|
|
}
|
|
enum ErrorCode {
|
|
InternalError = 0;
|
|
DuplicateSource = 1;
|
|
UnsupportedMessage = 2;
|
|
}
|