mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-03 09:22:30 +08:00
17 lines
227 B
Protocol Buffer
17 lines
227 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option go_package = "master";
|
|
|
|
package milvus;
|
|
|
|
message HelloRequest{
|
|
string name = 1;
|
|
}
|
|
|
|
message HelloReply{
|
|
string msg = 1;
|
|
}
|
|
|
|
service HelloService{
|
|
rpc SayHello (HelloRequest) returns (HelloReply){}
|
|
} |