Files
qdrant-client/qdrant_client/proto/qdrant.proto
Luis Cossío 62c79e2f5c Generate rest and grpc clients for 1.8 (#512)
* update grpc client

* update rest client
2024-03-01 14:55:08 +01:00

21 lines
408 B
Protocol Buffer

syntax = "proto3";
import "collections_service.proto";
import "points_service.proto";
import "snapshots_service.proto";
package qdrant;
option csharp_namespace = "Qdrant.Client.Grpc";
service Qdrant {
rpc HealthCheck (HealthCheckRequest) returns (HealthCheckReply) {}
}
message HealthCheckRequest {}
message HealthCheckReply {
string title = 1;
string version = 2;
optional string commit = 3;
}