Notes added by 'git notes append'
This commit is contained in:
parent
d05baf1b47
commit
6e888a6cb5
|
@ -114,3 +114,613 @@ func (v *Table) Unmarshal(data []byte) error {
|
|||
}
|
||||
|
||||
// `autogen:table.pb.go`
|
||||
|
||||
// Code modified by go.wit.com/apps/autogenpb DO NOT EDIT.
|
||||
//
|
||||
// user defined Mutex locks were auto added
|
||||
//
|
||||
// autogenpb version & build time: v0.0.52-1-g4fdcc99 2025.02.12_1512
|
||||
// autogenpb auto generates Sort(), Unique() and Marshal() functions
|
||||
// go install go.wit.com/apps/autogenpb@latest
|
||||
|
||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||
// versions:
|
||||
// protoc-gen-go v1.33.0
|
||||
// protoc v3.21.12
|
||||
// source: table.proto
|
||||
|
||||
// playing around with ideas here
|
||||
|
||||
package guipb // autogenpb changed the package name
|
||||
|
||||
import (
|
||||
reflect "reflect"
|
||||
sync "sync"
|
||||
|
||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
||||
_ "google.golang.org/protobuf/types/known/timestamppb"
|
||||
)
|
||||
|
||||
const (
|
||||
// Verify that this generated code is sufficiently up-to-date.
|
||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
||||
)
|
||||
|
||||
type StringRow struct {
|
||||
sync.RWMutex // auto-added by go.wit.com/apps/autogenpb
|
||||
|
||||
state protoimpl.MessageState
|
||||
sizeCache protoimpl.SizeCache
|
||||
unknownFields protoimpl.UnknownFields
|
||||
|
||||
Header string `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"` //
|
||||
Vals []string `protobuf:"bytes,2,rep,name=vals,proto3" json:"vals,omitempty"` //
|
||||
WidgetS []*Widget `protobuf:"bytes,3,rep,name=widgetS,proto3" json:"widgetS,omitempty"` //
|
||||
}
|
||||
|
||||
func (x *StringRow) Reset() {
|
||||
*x = StringRow{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_table_proto_msgTypes[0]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
}
|
||||
|
||||
func (x *StringRow) String() string {
|
||||
return protoimpl.X.MessageStringOf(x)
|
||||
}
|
||||
|
||||
func (*StringRow) ProtoMessage() {}
|
||||
|
||||
func (x *StringRow) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_table_proto_msgTypes[0]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
return ms
|
||||
}
|
||||
return mi.MessageOf(x)
|
||||
}
|
||||
|
||||
// Deprecated: Use StringRow.ProtoReflect.Descriptor instead.
|
||||
func (*StringRow) Descriptor() ([]byte, []int) {
|
||||
return file_table_proto_rawDescGZIP(), []int{0}
|
||||
}
|
||||
|
||||
func (x *StringRow) GetHeader() string {
|
||||
if x != nil {
|
||||
return x.Header
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (x *StringRow) GetVals() []string {
|
||||
if x != nil {
|
||||
return x.Vals
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (x *StringRow) GetWidgetS() []*Widget {
|
||||
if x != nil {
|
||||
return x.WidgetS
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
type IntRow struct {
|
||||
sync.RWMutex // auto-added by go.wit.com/apps/autogenpb
|
||||
|
||||
state protoimpl.MessageState
|
||||
sizeCache protoimpl.SizeCache
|
||||
unknownFields protoimpl.UnknownFields
|
||||
|
||||
Header *Widget `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"` //
|
||||
Widgets []*Widget `protobuf:"bytes,2,rep,name=widgets,proto3" json:"widgets,omitempty"` //
|
||||
}
|
||||
|
||||
func (x *IntRow) Reset() {
|
||||
*x = IntRow{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_table_proto_msgTypes[1]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
}
|
||||
|
||||
func (x *IntRow) String() string {
|
||||
return protoimpl.X.MessageStringOf(x)
|
||||
}
|
||||
|
||||
func (*IntRow) ProtoMessage() {}
|
||||
|
||||
func (x *IntRow) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_table_proto_msgTypes[1]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
return ms
|
||||
}
|
||||
return mi.MessageOf(x)
|
||||
}
|
||||
|
||||
// Deprecated: Use IntRow.ProtoReflect.Descriptor instead.
|
||||
func (*IntRow) Descriptor() ([]byte, []int) {
|
||||
return file_table_proto_rawDescGZIP(), []int{1}
|
||||
}
|
||||
|
||||
func (x *IntRow) GetHeader() *Widget {
|
||||
if x != nil {
|
||||
return x.Header
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (x *IntRow) GetWidgets() []*Widget {
|
||||
if x != nil {
|
||||
return x.Widgets
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
type TimeRow struct {
|
||||
sync.RWMutex // auto-added by go.wit.com/apps/autogenpb
|
||||
|
||||
state protoimpl.MessageState
|
||||
sizeCache protoimpl.SizeCache
|
||||
unknownFields protoimpl.UnknownFields
|
||||
|
||||
Header *Widget `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"` //
|
||||
Widgets []*Widget `protobuf:"bytes,2,rep,name=widgets,proto3" json:"widgets,omitempty"` //
|
||||
}
|
||||
|
||||
func (x *TimeRow) Reset() {
|
||||
*x = TimeRow{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_table_proto_msgTypes[2]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
}
|
||||
|
||||
func (x *TimeRow) String() string {
|
||||
return protoimpl.X.MessageStringOf(x)
|
||||
}
|
||||
|
||||
func (*TimeRow) ProtoMessage() {}
|
||||
|
||||
func (x *TimeRow) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_table_proto_msgTypes[2]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
return ms
|
||||
}
|
||||
return mi.MessageOf(x)
|
||||
}
|
||||
|
||||
// Deprecated: Use TimeRow.ProtoReflect.Descriptor instead.
|
||||
func (*TimeRow) Descriptor() ([]byte, []int) {
|
||||
return file_table_proto_rawDescGZIP(), []int{2}
|
||||
}
|
||||
|
||||
func (x *TimeRow) GetHeader() *Widget {
|
||||
if x != nil {
|
||||
return x.Header
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (x *TimeRow) GetWidgets() []*Widget {
|
||||
if x != nil {
|
||||
return x.Widgets
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
type BoolRow struct {
|
||||
sync.RWMutex // auto-added by go.wit.com/apps/autogenpb
|
||||
|
||||
state protoimpl.MessageState
|
||||
sizeCache protoimpl.SizeCache
|
||||
unknownFields protoimpl.UnknownFields
|
||||
|
||||
Header *Widget `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"` //
|
||||
Widgets []*Widget `protobuf:"bytes,2,rep,name=widgets,proto3" json:"widgets,omitempty"` //
|
||||
}
|
||||
|
||||
func (x *BoolRow) Reset() {
|
||||
*x = BoolRow{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_table_proto_msgTypes[3]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
}
|
||||
|
||||
func (x *BoolRow) String() string {
|
||||
return protoimpl.X.MessageStringOf(x)
|
||||
}
|
||||
|
||||
func (*BoolRow) ProtoMessage() {}
|
||||
|
||||
func (x *BoolRow) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_table_proto_msgTypes[3]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
return ms
|
||||
}
|
||||
return mi.MessageOf(x)
|
||||
}
|
||||
|
||||
// Deprecated: Use BoolRow.ProtoReflect.Descriptor instead.
|
||||
func (*BoolRow) Descriptor() ([]byte, []int) {
|
||||
return file_table_proto_rawDescGZIP(), []int{3}
|
||||
}
|
||||
|
||||
func (x *BoolRow) GetHeader() *Widget {
|
||||
if x != nil {
|
||||
return x.Header
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (x *BoolRow) GetWidgets() []*Widget {
|
||||
if x != nil {
|
||||
return x.Widgets
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
type Table struct {
|
||||
sync.RWMutex // auto-added by go.wit.com/apps/autogenpb
|
||||
|
||||
state protoimpl.MessageState
|
||||
sizeCache protoimpl.SizeCache
|
||||
unknownFields protoimpl.UnknownFields
|
||||
|
||||
Order []string `protobuf:"bytes,1,rep,name=order,proto3" json:"order,omitempty"`
|
||||
StringRows []*StringRow `protobuf:"bytes,2,rep,name=StringRows,proto3" json:"StringRows,omitempty"`
|
||||
IntRows []*IntRow `protobuf:"bytes,3,rep,name=IntRows,proto3" json:"IntRows,omitempty"`
|
||||
TimeRows []*TimeRow `protobuf:"bytes,4,rep,name=TimeRows,proto3" json:"TimeRows,omitempty"`
|
||||
BoolRows []*BoolRow `protobuf:"bytes,5,rep,name=BoolRows,proto3" json:"BoolRows,omitempty"`
|
||||
}
|
||||
|
||||
func (x *Table) Reset() {
|
||||
*x = Table{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_table_proto_msgTypes[4]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
}
|
||||
|
||||
func (x *Table) String() string {
|
||||
return protoimpl.X.MessageStringOf(x)
|
||||
}
|
||||
|
||||
func (*Table) ProtoMessage() {}
|
||||
|
||||
func (x *Table) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_table_proto_msgTypes[4]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
return ms
|
||||
}
|
||||
return mi.MessageOf(x)
|
||||
}
|
||||
|
||||
// Deprecated: Use Table.ProtoReflect.Descriptor instead.
|
||||
func (*Table) Descriptor() ([]byte, []int) {
|
||||
return file_table_proto_rawDescGZIP(), []int{4}
|
||||
}
|
||||
|
||||
func (x *Table) GetOrder() []string {
|
||||
if x != nil {
|
||||
return x.Order
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (x *Table) GetStringRows() []*StringRow {
|
||||
if x != nil {
|
||||
return x.StringRows
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (x *Table) GetIntRows() []*IntRow {
|
||||
if x != nil {
|
||||
return x.IntRows
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (x *Table) GetTimeRows() []*TimeRow {
|
||||
if x != nil {
|
||||
return x.TimeRows
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (x *Table) GetBoolRows() []*BoolRow {
|
||||
if x != nil {
|
||||
return x.BoolRows
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
type Tables struct {
|
||||
sync.RWMutex // auto-added by go.wit.com/apps/autogenpb
|
||||
|
||||
state protoimpl.MessageState
|
||||
sizeCache protoimpl.SizeCache
|
||||
unknownFields protoimpl.UnknownFields
|
||||
|
||||
Uuid string `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid,omitempty"` // `autogenpb:uuid:c328aa62-3c4f-4d00-9244-cc44ae75ab1b`
|
||||
Version string `protobuf:"bytes,2,opt,name=version,proto3" json:"version,omitempty"` // `autogenpb:version:v1`
|
||||
Tables []*Table `protobuf:"bytes,3,rep,name=Tables,proto3" json:"Tables,omitempty"`
|
||||
}
|
||||
|
||||
func (x *Tables) Reset() {
|
||||
*x = Tables{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_table_proto_msgTypes[5]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
}
|
||||
|
||||
func (x *Tables) String() string {
|
||||
return protoimpl.X.MessageStringOf(x)
|
||||
}
|
||||
|
||||
func (*Tables) ProtoMessage() {}
|
||||
|
||||
func (x *Tables) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_table_proto_msgTypes[5]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
return ms
|
||||
}
|
||||
return mi.MessageOf(x)
|
||||
}
|
||||
|
||||
// Deprecated: Use Tables.ProtoReflect.Descriptor instead.
|
||||
func (*Tables) Descriptor() ([]byte, []int) {
|
||||
return file_table_proto_rawDescGZIP(), []int{5}
|
||||
}
|
||||
|
||||
func (x *Tables) GetUuid() string {
|
||||
if x != nil {
|
||||
return x.Uuid
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (x *Tables) GetVersion() string {
|
||||
if x != nil {
|
||||
return x.Version
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (x *Tables) GetTables() []*Table {
|
||||
if x != nil {
|
||||
return x.Tables
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
var File_table_proto protoreflect.FileDescriptor
|
||||
|
||||
var file_table_proto_rawDesc = []byte{
|
||||
0x0a, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x67,
|
||||
0x69, 0x74, 0x70, 0x62, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f,
|
||||
0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2e,
|
||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x0c, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74, 0x2e, 0x70, 0x72,
|
||||
0x6f, 0x74, 0x6f, 0x22, 0x60, 0x0a, 0x09, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x52, 0x6f, 0x77,
|
||||
0x12, 0x16, 0x0a, 0x06, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
|
||||
0x52, 0x06, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x76, 0x61, 0x6c, 0x73,
|
||||
0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x04, 0x76, 0x61, 0x6c, 0x73, 0x12, 0x27, 0x0a, 0x07,
|
||||
0x77, 0x69, 0x64, 0x67, 0x65, 0x74, 0x53, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0d, 0x2e,
|
||||
0x67, 0x69, 0x74, 0x70, 0x62, 0x2e, 0x57, 0x69, 0x64, 0x67, 0x65, 0x74, 0x52, 0x07, 0x77, 0x69,
|
||||
0x64, 0x67, 0x65, 0x74, 0x53, 0x22, 0x58, 0x0a, 0x06, 0x49, 0x6e, 0x74, 0x52, 0x6f, 0x77, 0x12,
|
||||
0x25, 0x0a, 0x06, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
|
||||
0x0d, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x62, 0x2e, 0x57, 0x69, 0x64, 0x67, 0x65, 0x74, 0x52, 0x06,
|
||||
0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x27, 0x0a, 0x07, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74,
|
||||
0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x62, 0x2e,
|
||||
0x57, 0x69, 0x64, 0x67, 0x65, 0x74, 0x52, 0x07, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74, 0x73, 0x22,
|
||||
0x59, 0x0a, 0x07, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x6f, 0x77, 0x12, 0x25, 0x0a, 0x06, 0x68, 0x65,
|
||||
0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x67, 0x69, 0x74,
|
||||
0x70, 0x62, 0x2e, 0x57, 0x69, 0x64, 0x67, 0x65, 0x74, 0x52, 0x06, 0x68, 0x65, 0x61, 0x64, 0x65,
|
||||
0x72, 0x12, 0x27, 0x0a, 0x07, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03,
|
||||
0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x62, 0x2e, 0x57, 0x69, 0x64, 0x67, 0x65,
|
||||
0x74, 0x52, 0x07, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74, 0x73, 0x22, 0x59, 0x0a, 0x07, 0x42, 0x6f,
|
||||
0x6f, 0x6c, 0x52, 0x6f, 0x77, 0x12, 0x25, 0x0a, 0x06, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18,
|
||||
0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x62, 0x2e, 0x57, 0x69,
|
||||
0x64, 0x67, 0x65, 0x74, 0x52, 0x06, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x27, 0x0a, 0x07,
|
||||
0x77, 0x69, 0x64, 0x67, 0x65, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0d, 0x2e,
|
||||
0x67, 0x69, 0x74, 0x70, 0x62, 0x2e, 0x57, 0x69, 0x64, 0x67, 0x65, 0x74, 0x52, 0x07, 0x77, 0x69,
|
||||
0x64, 0x67, 0x65, 0x74, 0x73, 0x22, 0xd0, 0x01, 0x0a, 0x05, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x12,
|
||||
0x14, 0x0a, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05,
|
||||
0x6f, 0x72, 0x64, 0x65, 0x72, 0x12, 0x30, 0x0a, 0x0a, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x52,
|
||||
0x6f, 0x77, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x67, 0x69, 0x74, 0x70,
|
||||
0x62, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x52, 0x6f, 0x77, 0x52, 0x0a, 0x53, 0x74, 0x72,
|
||||
0x69, 0x6e, 0x67, 0x52, 0x6f, 0x77, 0x73, 0x12, 0x27, 0x0a, 0x07, 0x49, 0x6e, 0x74, 0x52, 0x6f,
|
||||
0x77, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x62,
|
||||
0x2e, 0x49, 0x6e, 0x74, 0x52, 0x6f, 0x77, 0x52, 0x07, 0x49, 0x6e, 0x74, 0x52, 0x6f, 0x77, 0x73,
|
||||
0x12, 0x2a, 0x0a, 0x08, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x6f, 0x77, 0x73, 0x18, 0x04, 0x20, 0x03,
|
||||
0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x62, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x52,
|
||||
0x6f, 0x77, 0x52, 0x08, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x6f, 0x77, 0x73, 0x12, 0x2a, 0x0a, 0x08,
|
||||
0x42, 0x6f, 0x6f, 0x6c, 0x52, 0x6f, 0x77, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0e,
|
||||
0x2e, 0x67, 0x69, 0x74, 0x70, 0x62, 0x2e, 0x42, 0x6f, 0x6f, 0x6c, 0x52, 0x6f, 0x77, 0x52, 0x08,
|
||||
0x42, 0x6f, 0x6f, 0x6c, 0x52, 0x6f, 0x77, 0x73, 0x22, 0x5c, 0x0a, 0x06, 0x54, 0x61, 0x62, 0x6c,
|
||||
0x65, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x75, 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
|
||||
0x52, 0x04, 0x75, 0x75, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
|
||||
0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
|
||||
0x12, 0x24, 0x0a, 0x06, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b,
|
||||
0x32, 0x0c, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x62, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x06,
|
||||
0x54, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||||
}
|
||||
|
||||
var (
|
||||
file_table_proto_rawDescOnce sync.Once
|
||||
file_table_proto_rawDescData = file_table_proto_rawDesc
|
||||
)
|
||||
|
||||
func file_table_proto_rawDescGZIP() []byte {
|
||||
file_table_proto_rawDescOnce.Do(func() {
|
||||
file_table_proto_rawDescData = protoimpl.X.CompressGZIP(file_table_proto_rawDescData)
|
||||
})
|
||||
return file_table_proto_rawDescData
|
||||
}
|
||||
|
||||
var file_table_proto_msgTypes = make([]protoimpl.MessageInfo, 6)
|
||||
var file_table_proto_goTypes = []interface{}{
|
||||
(*StringRow)(nil), // 0: gitpb.StringRow
|
||||
(*IntRow)(nil), // 1: gitpb.IntRow
|
||||
(*TimeRow)(nil), // 2: gitpb.TimeRow
|
||||
(*BoolRow)(nil), // 3: gitpb.BoolRow
|
||||
(*Table)(nil), // 4: gitpb.Table
|
||||
(*Tables)(nil), // 5: gitpb.Tables
|
||||
(*Widget)(nil), // 6: gitpb.Widget
|
||||
}
|
||||
var file_table_proto_depIdxs = []int32{
|
||||
6, // 0: gitpb.StringRow.widgetS:type_name -> gitpb.Widget
|
||||
6, // 1: gitpb.IntRow.header:type_name -> gitpb.Widget
|
||||
6, // 2: gitpb.IntRow.widgets:type_name -> gitpb.Widget
|
||||
6, // 3: gitpb.TimeRow.header:type_name -> gitpb.Widget
|
||||
6, // 4: gitpb.TimeRow.widgets:type_name -> gitpb.Widget
|
||||
6, // 5: gitpb.BoolRow.header:type_name -> gitpb.Widget
|
||||
6, // 6: gitpb.BoolRow.widgets:type_name -> gitpb.Widget
|
||||
0, // 7: gitpb.Table.StringRows:type_name -> gitpb.StringRow
|
||||
1, // 8: gitpb.Table.IntRows:type_name -> gitpb.IntRow
|
||||
2, // 9: gitpb.Table.TimeRows:type_name -> gitpb.TimeRow
|
||||
3, // 10: gitpb.Table.BoolRows:type_name -> gitpb.BoolRow
|
||||
4, // 11: gitpb.Tables.Tables:type_name -> gitpb.Table
|
||||
12, // [12:12] is the sub-list for method output_type
|
||||
12, // [12:12] is the sub-list for method input_type
|
||||
12, // [12:12] is the sub-list for extension type_name
|
||||
12, // [12:12] is the sub-list for extension extendee
|
||||
0, // [0:12] is the sub-list for field type_name
|
||||
}
|
||||
|
||||
func init() { file_table_proto_init() }
|
||||
func file_table_proto_init() {
|
||||
if File_table_proto != nil {
|
||||
return
|
||||
}
|
||||
file_widget_proto_init()
|
||||
if !protoimpl.UnsafeEnabled {
|
||||
file_table_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*StringRow); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
case 1:
|
||||
return &v.sizeCache
|
||||
case 2:
|
||||
return &v.unknownFields
|
||||
default:
|
||||
return nil
|
||||
}
|
||||
}
|
||||
file_table_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*IntRow); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
case 1:
|
||||
return &v.sizeCache
|
||||
case 2:
|
||||
return &v.unknownFields
|
||||
default:
|
||||
return nil
|
||||
}
|
||||
}
|
||||
file_table_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*TimeRow); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
case 1:
|
||||
return &v.sizeCache
|
||||
case 2:
|
||||
return &v.unknownFields
|
||||
default:
|
||||
return nil
|
||||
}
|
||||
}
|
||||
file_table_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*BoolRow); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
case 1:
|
||||
return &v.sizeCache
|
||||
case 2:
|
||||
return &v.unknownFields
|
||||
default:
|
||||
return nil
|
||||
}
|
||||
}
|
||||
file_table_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*Table); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
case 1:
|
||||
return &v.sizeCache
|
||||
case 2:
|
||||
return &v.unknownFields
|
||||
default:
|
||||
return nil
|
||||
}
|
||||
}
|
||||
file_table_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*Tables); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
case 1:
|
||||
return &v.sizeCache
|
||||
case 2:
|
||||
return &v.unknownFields
|
||||
default:
|
||||
return nil
|
||||
}
|
||||
}
|
||||
}
|
||||
type x struct{}
|
||||
out := protoimpl.TypeBuilder{
|
||||
File: protoimpl.DescBuilder{
|
||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||||
RawDescriptor: file_table_proto_rawDesc,
|
||||
NumEnums: 0,
|
||||
NumMessages: 6,
|
||||
NumExtensions: 0,
|
||||
NumServices: 0,
|
||||
},
|
||||
GoTypes: file_table_proto_goTypes,
|
||||
DependencyIndexes: file_table_proto_depIdxs,
|
||||
MessageInfos: file_table_proto_msgTypes,
|
||||
}.Build()
|
||||
File_table_proto = out.File
|
||||
file_table_proto_rawDesc = nil
|
||||
file_table_proto_goTypes = nil
|
||||
file_table_proto_depIdxs = nil
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue