19 lines
444 B
Plaintext
19 lines
444 B
Plaintext
{{define "gpb_single"}}
|
|
// Code generated by xlsx2proto.
|
|
// DO NOT EDIT!
|
|
syntax = "proto3";
|
|
package server;
|
|
option go_package = ".;server";
|
|
|
|
message {{.ProtoName}} {
|
|
{{ range $index, $col := .Cols }}{{if $col.IsArray }}
|
|
repeated {{$col.CTString}} {{$col.ColName}} = {{ inc $index }};
|
|
{{else}}
|
|
{{$col.CTString}} {{$col.ColName}} = {{ inc $index }};
|
|
{{end}}{{end}}
|
|
}
|
|
|
|
message {{.ProtoName}}Array {
|
|
repeated {{.ProtoName}} Arr = 1;
|
|
}
|
|
{{end}} |