/*
  Hyperledger Cactus API
 
  Interact with a Cactus deployment through HTTP.
 
  The version of the OpenAPI document: 0.0.1
  
  Generated by OpenAPI Generator: https://openapi-generator.tech
*/

syntax = "proto3";

package org.hyperledger.cactus.cmd_api_server;

import "google/protobuf/empty.proto";
import "models/health_check_response_pb.proto";

service DefaultService {
  rpc GetHealthCheckV1 (google.protobuf.Empty) returns (HealthCheckResponsePB);

  rpc GetPrometheusMetricsV1 (google.protobuf.Empty) returns (GetPrometheusMetricsV1Response);

}

message GetPrometheusMetricsV1Response {
  string data = 1;
}

