This commit is contained in:
2025-06-29 10:39:00 +08:00
parent 605197345b
commit b45eb83fe4
15 changed files with 597 additions and 3 deletions

View File

@@ -0,0 +1,17 @@
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;
}