File size: 631 Bytes
84d2a97
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
syntax = "proto3";

import "collections_service.proto";
import "collections_internal_service.proto";
import "health_check.proto";
import "points_service.proto";
import "points_internal_service.proto";
import "qdrant_internal_service.proto";
import "raft_service.proto";
import "shard_snapshots_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;
}