defmodule Momento.Protos.CacheClient.PingRequest do @moduledoc false use Protobuf, protoc_gen_elixir_version: "0.12.0", syntax: :proto3 def descriptor do # credo:disable-for-next-line %Google.Protobuf.DescriptorProto{ name: "_PingRequest", field: [], nested_type: [], enum_type: [], extension_range: [], extension: [], options: nil, oneof_decl: [], reserved_range: [], reserved_name: [], __unknown_fields__: [] } end end defmodule Momento.Protos.CacheClient.PingResponse do @moduledoc false use Protobuf, protoc_gen_elixir_version: "0.12.0", syntax: :proto3 def descriptor do # credo:disable-for-next-line %Google.Protobuf.DescriptorProto{ name: "_PingResponse", field: [], nested_type: [], enum_type: [], extension_range: [], extension: [], options: nil, oneof_decl: [], reserved_range: [], reserved_name: [], __unknown_fields__: [] } end end defmodule Momento.Protos.CacheClient.Ping.Service do @moduledoc false use GRPC.Service, name: "cache_client.Ping", protoc_gen_elixir_version: "0.12.0" def descriptor do # credo:disable-for-next-line %Google.Protobuf.ServiceDescriptorProto{ name: "Ping", method: [ %Google.Protobuf.MethodDescriptorProto{ name: "Ping", input_type: ".cache_client._PingRequest", output_type: ".cache_client._PingResponse", options: %Google.Protobuf.MethodOptions{ deprecated: false, idempotency_level: :IDEMPOTENCY_UNKNOWN, uninterpreted_option: [], __pb_extensions__: %{}, __unknown_fields__: [] }, client_streaming: false, server_streaming: false, __unknown_fields__: [] } ], options: nil, __unknown_fields__: [] } end rpc :Ping, Momento.Protos.CacheClient.PingRequest, Momento.Protos.CacheClient.PingResponse end defmodule Momento.Protos.CacheClient.Ping.Stub do @moduledoc false use GRPC.Stub, service: Momento.Protos.CacheClient.Ping.Service end