12 lines
176 B
Protocol Buffer
Raw Normal View History

2021-09-16 18:31:25 +08:00
syntax = "proto3";
2021-12-16 22:24:05 +08:00
message WSError {
2021-09-16 18:31:25 +08:00
ErrorCode code = 1;
string msg = 2;
}
enum ErrorCode {
InternalError = 0;
2021-09-20 15:38:55 +08:00
UnsupportedMessage = 1;
Unauthorized = 2;
2021-09-16 18:31:25 +08:00
}