10 lines
157 B
Protocol Buffer
10 lines
157 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option go_package = "common/proto/gen/grpc_pb";
|
|
import "common.proto";
|
|
|
|
service Gateway {
|
|
rpc SendMessage(Empty) returns (Empty) {}
|
|
}
|
|
|