17 lines
269 B
Protocol Buffer
17 lines
269 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package gou;
|
|
|
|
|
|
enum MessageType {
|
|
MESSAGE_TYPE_TRACE = 0;
|
|
MESSAGE_TYPE_DEBUG = 1;
|
|
MESSAGE_TYPE_INFO = 2;
|
|
MESSAGE_TYPE_WARNING = 3;
|
|
MESSAGE_TYPE_ERROR = 4;
|
|
}
|
|
|
|
message Starpoles {
|
|
MessageType type = 1;
|
|
string message = 2;
|
|
} |