mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-24 01:30:25 +08:00
227104d7d7
* Fix goctl completion expression * Fix code generation error if the pkg of pb/grpc is same to zrpc call client pkg * Remove deprecated comment on action goctl rpc new * Remove zrpc code generation on action goctl rpc proto * Remove zrpc code generation on action goctl rpc proto * Remove Generator interface Co-authored-by: anqiansong <anqiansong@bytedance.com>
9 lines
103 B
Protocol Buffer
9 lines
103 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package common;
|
|
option go_package="./common";
|
|
|
|
message User {
|
|
string name = 1;
|
|
}
|