| OLD | NEW |
| (Empty) | |
| 1 // Code generated by protoc-gen-go. |
| 2 // source: github.com/luci/luci-go/milo/common/config/settings.proto |
| 3 // DO NOT EDIT! |
| 4 |
| 5 package config |
| 6 |
| 7 import proto "github.com/golang/protobuf/proto" |
| 8 import fmt "fmt" |
| 9 import math "math" |
| 10 |
| 11 // Reference imports to suppress errors if they are not otherwise used. |
| 12 var _ = proto.Marshal |
| 13 var _ = fmt.Errorf |
| 14 var _ = math.Inf |
| 15 |
| 16 // Settings represents the format for the global (service) config for Milo. |
| 17 type Settings struct { |
| 18 // buildbot_reader is the infra-auth group that is allowed to read inter
nal |
| 19 // buildbot data. |
| 20 BuildbotInternalReader string `protobuf:"bytes,1,opt,name=buildbot_inter
nal_reader,json=buildbotInternalReader" json:"buildbot_internal_reader,omitempty
"` |
| 21 } |
| 22 |
| 23 func (m *Settings) Reset() { *m = Settings{} } |
| 24 func (m *Settings) String() string { return proto.CompactTextString(m
) } |
| 25 func (*Settings) ProtoMessage() {} |
| 26 func (*Settings) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{0}
} |
| 27 |
| 28 func (m *Settings) GetBuildbotInternalReader() string { |
| 29 if m != nil { |
| 30 return m.BuildbotInternalReader |
| 31 } |
| 32 return "" |
| 33 } |
| 34 |
| 35 func init() { |
| 36 proto.RegisterType((*Settings)(nil), "config.Settings") |
| 37 } |
| 38 |
| 39 func init() { |
| 40 proto.RegisterFile("github.com/luci/luci-go/milo/common/config/settings.
proto", fileDescriptor1) |
| 41 } |
| 42 |
| 43 var fileDescriptor1 = []byte{ |
| 44 // 139 bytes of a gzipped FileDescriptorProto |
| 45 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xb2,
0x4c, 0xcf, 0x2c, 0xc9, |
| 46 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0xcf, 0x29, 0x4d, 0xce, 0x04,
0x13, 0xba, 0xe9, 0xf9, |
| 47 0xfa, 0xb9, 0x99, 0x39, 0xf9, 0xfa, 0xc9, 0xf9, 0xb9, 0xb9, 0xf9, 0x79,
0xfa, 0xc9, 0xf9, 0x79, |
| 48 0x69, 0x99, 0xe9, 0xfa, 0xc5, 0xa9, 0x25, 0x25, 0x99, 0x79, 0xe9, 0xc5,
0x7a, 0x05, 0x45, 0xf9, |
| 49 0x25, 0xf9, 0x42, 0x6c, 0x10, 0x61, 0x25, 0x17, 0x2e, 0x8e, 0x60, 0xa8,
0x8c, 0x90, 0x05, 0x97, |
| 50 0x44, 0x52, 0x69, 0x66, 0x4e, 0x4a, 0x52, 0x7e, 0x49, 0x7c, 0x66, 0x5e,
0x49, 0x6a, 0x51, 0x5e, |
| 51 0x62, 0x4e, 0x7c, 0x51, 0x6a, 0x62, 0x4a, 0x6a, 0x91, 0x04, 0xa3, 0x02,
0xa3, 0x06, 0x67, 0x90, |
| 52 0x18, 0x4c, 0xde, 0x13, 0x2a, 0x1d, 0x04, 0x96, 0x4d, 0x62, 0x03, 0x1b,
0x6a, 0x0c, 0x08, 0x00, |
| 53 0x00, 0xff, 0xff, 0xc3, 0xa5, 0xe4, 0x65, 0x91, 0x00, 0x00, 0x00, |
| 54 } |
| OLD | NEW |