重构 #4

Merged
huang merged 106 commits from 重构 into main 2025-09-18 21:51:17 +08:00
Showing only changes of commit 28cf997f1d - Show all commits

View File

@@ -0,0 +1,21 @@
syntax = "proto3";
package device;
import "google/protobuf/any.proto";
option go_package = "internal/app/service/device/proto";
service Device {
rpc Ping(PingRequest) returns (PingResponse);
}
message PingRequest {
int32 message_id = 1;
string method = 2;
}
message PingResponse {
int32 message_id = 1;
string message = 2;
}