mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-02-03 08:48:40 +08:00
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;
|
|
}
|