21 lines
236 B
Protocol Buffer
21 lines
236 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package hiddifyrpc;
|
|
|
|
option go_package = "./hiddifyrpc";
|
|
|
|
message HelloRequest {
|
|
string name = 1;
|
|
}
|
|
|
|
message HelloResponse {
|
|
string message = 1;
|
|
}
|
|
|
|
message Empty {
|
|
}
|
|
|
|
enum ResponseCode {
|
|
OK = 0;
|
|
FAILED = 1;
|
|
} |