18 lines
239 B
Protocol Buffer
18 lines
239 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option go_package = "common/proto/gen/grpc_pb";
|
|
import "common.proto";
|
|
|
|
service Scene {
|
|
rpc Enter(EnterReq) returns (EnterResp) {}
|
|
}
|
|
|
|
message EnterReq {
|
|
string name = 1;
|
|
}
|
|
|
|
message EnterResp {
|
|
string name = 1;
|
|
}
|
|
|