14 lines
217 B
Protocol Buffer
14 lines
217 B
Protocol Buffer
|
syntax = "proto2";
|
||
|
|
||
|
package base;
|
||
|
|
||
|
option go_package = "github.com/cloudwego/hertz/cmd/hz/test/hertz_model/psm";
|
||
|
|
||
|
message Base {
|
||
|
optional string IsBaseString = 1;
|
||
|
}
|
||
|
|
||
|
enum BaseEnumType {
|
||
|
TWEET = 0;
|
||
|
RETWEET = 1;
|
||
|
}
|