mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-04-24 22:57:12 -04:00
11 lines
176 B
Protocol Buffer
11 lines
176 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
message WSError {
|
|
ErrorCode code = 1;
|
|
string msg = 2;
|
|
}
|
|
enum ErrorCode {
|
|
InternalError = 0;
|
|
UnsupportedMessage = 1;
|
|
Unauthorized = 2;
|
|
}
|