blob: 93888bfd458b696b4773feb6746935b341f246e7 [file] [log] [blame]
syntax = "proto3";
import "scalapb/scalapb.proto";
option (scalapb.options) = {
package_name: "main.scala.org.marvin.repl"
flat_package: true
};
package repl;
// The greeting service definition.
service Greeter {
// Sends a greeting
rpc SayHello (HelloRequest) returns (HelloReply) {}
}
// The request message containing the user's name.
message HelloRequest {
string name = 1;
}
// The response message containing the greetings
message HelloReply {
string message = 1;
}