syntax = "proto3"; package api; import "google/api/annotations.proto"; option go_package = "pure/tests/api"; // The greeting service definition. // The greeting service definition. service Recommender { // Sends a greeting rpc Ping (PingRequest) returns (PingReply) { } } message PingRequest { string name = 1; } message PingReply { string message = 1; }