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