13 lines
202 B
Protocol Buffer
13 lines
202 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package Byway.Thrift.Data.Net;
|
|
|
|
option go_package = "../msg";
|
|
|
|
import "HandbookInfo.proto";
|
|
|
|
message Handbook {
|
|
repeated HandbookInfo Handbooks = 1;
|
|
repeated string Collect = 2;
|
|
}
|