Skip to main content

One post tagged with "protocall"

View All Tags

Hello World!

ยท One min read
Founder @ Protocall
syntax = "proto3";

package protocall.helloworld;

message HelloRequest {
  string name = 1;
}

message HelloResponse {
  string message = 1;
}

service HelloWorld {
  rpc SayHello (HelloRequest) returns (HelloResponse) {}
}