实现远程日志

This commit is contained in:
2026-01-29 01:57:40 +08:00
parent f1d846bb8b
commit d8917639af
9 changed files with 649 additions and 2 deletions

17
proto/message.proto Normal file
View 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;
}