syntax = "proto3";

package hello;

message String {
	string value = 1;
}

service HelloService {
	rpc Hello (String) returns (String);
}