实现远程日志
This commit is contained in:
17
proto/message.proto
Normal file
17
proto/message.proto
Normal file
@@ -0,0 +1,17 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user