github.com/asynkron/protoactor-go@v0.0.0-20240308120642-ef91a6abee75/protobuf/protoc-gen-go-grain/test/hello/hello.proto (about)

     1  syntax = "proto3";
     2  
     3  package hello;
     4  
     5  import "google/protobuf/empty.proto";
     6  
     7  option go_package = "github.com/asynkron/protoactor-go/protoc-gen-go-grain/testdata/hello";
     8  
     9  message SayHelloResponse {
    10    string message = 1;
    11  }
    12  
    13  service Hello {
    14    rpc SayHello (google.protobuf.Empty) returns (SayHelloResponse) {}
    15  }