update ingress.proto

This commit is contained in:
ginuerzh
2023-10-15 15:37:45 +08:00
parent bc86458bf2
commit fc558b9a31
5 changed files with 212 additions and 17 deletions

View File

@ -14,6 +14,16 @@ message GetReply {
string endpoint = 1;
}
message SetRequest {
string host = 1;
string endpoint = 2;
}
message SetReply {
bool ok = 1;
}
service Ingress {
rpc Get(GetRequest) returns (GetReply);
rpc Set(SetRequest) returns (SetReply);
}