mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-15 04:24:44 +00:00
341 lines
11 KiB
Go
341 lines
11 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// source: proto/feeds.proto
|
|
|
|
package feeds
|
|
|
|
import (
|
|
fmt "fmt"
|
|
proto "github.com/golang/protobuf/proto"
|
|
math "math"
|
|
)
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ = proto.Marshal
|
|
var _ = fmt.Errorf
|
|
var _ = math.Inf
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the proto package it is being compiled against.
|
|
// A compilation error at this line likely means your copy of the
|
|
// proto package needs to be updated.
|
|
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
|
|
|
|
type Feed struct {
|
|
// rss feed name
|
|
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
|
// rss feed url
|
|
Url string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Feed) Reset() { *m = Feed{} }
|
|
func (m *Feed) String() string { return proto.CompactTextString(m) }
|
|
func (*Feed) ProtoMessage() {}
|
|
func (*Feed) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_dd517c38176c13bf, []int{0}
|
|
}
|
|
|
|
func (m *Feed) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Feed.Unmarshal(m, b)
|
|
}
|
|
func (m *Feed) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Feed.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *Feed) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Feed.Merge(m, src)
|
|
}
|
|
func (m *Feed) XXX_Size() int {
|
|
return xxx_messageInfo_Feed.Size(m)
|
|
}
|
|
func (m *Feed) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Feed.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Feed proto.InternalMessageInfo
|
|
|
|
func (m *Feed) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Feed) GetUrl() string {
|
|
if m != nil {
|
|
return m.Url
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type Entry struct {
|
|
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
Domain string `protobuf:"bytes,2,opt,name=domain,proto3" json:"domain,omitempty"`
|
|
Url string `protobuf:"bytes,3,opt,name=url,proto3" json:"url,omitempty"`
|
|
Title string `protobuf:"bytes,4,opt,name=title,proto3" json:"title,omitempty"`
|
|
Content string `protobuf:"bytes,5,opt,name=content,proto3" json:"content,omitempty"`
|
|
Date int64 `protobuf:"varint,6,opt,name=date,proto3" json:"date,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Entry) Reset() { *m = Entry{} }
|
|
func (m *Entry) String() string { return proto.CompactTextString(m) }
|
|
func (*Entry) ProtoMessage() {}
|
|
func (*Entry) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_dd517c38176c13bf, []int{1}
|
|
}
|
|
|
|
func (m *Entry) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Entry.Unmarshal(m, b)
|
|
}
|
|
func (m *Entry) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Entry.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *Entry) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Entry.Merge(m, src)
|
|
}
|
|
func (m *Entry) XXX_Size() int {
|
|
return xxx_messageInfo_Entry.Size(m)
|
|
}
|
|
func (m *Entry) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Entry.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Entry proto.InternalMessageInfo
|
|
|
|
func (m *Entry) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Entry) GetDomain() string {
|
|
if m != nil {
|
|
return m.Domain
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Entry) GetUrl() string {
|
|
if m != nil {
|
|
return m.Url
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Entry) GetTitle() string {
|
|
if m != nil {
|
|
return m.Title
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Entry) GetContent() string {
|
|
if m != nil {
|
|
return m.Content
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Entry) GetDate() int64 {
|
|
if m != nil {
|
|
return m.Date
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type NewRequest struct {
|
|
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
|
Url string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *NewRequest) Reset() { *m = NewRequest{} }
|
|
func (m *NewRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*NewRequest) ProtoMessage() {}
|
|
func (*NewRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_dd517c38176c13bf, []int{2}
|
|
}
|
|
|
|
func (m *NewRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_NewRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *NewRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_NewRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *NewRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_NewRequest.Merge(m, src)
|
|
}
|
|
func (m *NewRequest) XXX_Size() int {
|
|
return xxx_messageInfo_NewRequest.Size(m)
|
|
}
|
|
func (m *NewRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_NewRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_NewRequest proto.InternalMessageInfo
|
|
|
|
func (m *NewRequest) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *NewRequest) GetUrl() string {
|
|
if m != nil {
|
|
return m.Url
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type NewResponse struct {
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *NewResponse) Reset() { *m = NewResponse{} }
|
|
func (m *NewResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*NewResponse) ProtoMessage() {}
|
|
func (*NewResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_dd517c38176c13bf, []int{3}
|
|
}
|
|
|
|
func (m *NewResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_NewResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *NewResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_NewResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *NewResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_NewResponse.Merge(m, src)
|
|
}
|
|
func (m *NewResponse) XXX_Size() int {
|
|
return xxx_messageInfo_NewResponse.Size(m)
|
|
}
|
|
func (m *NewResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_NewResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_NewResponse proto.InternalMessageInfo
|
|
|
|
type EntriesRequest struct {
|
|
Url string `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *EntriesRequest) Reset() { *m = EntriesRequest{} }
|
|
func (m *EntriesRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*EntriesRequest) ProtoMessage() {}
|
|
func (*EntriesRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_dd517c38176c13bf, []int{4}
|
|
}
|
|
|
|
func (m *EntriesRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_EntriesRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *EntriesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_EntriesRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *EntriesRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_EntriesRequest.Merge(m, src)
|
|
}
|
|
func (m *EntriesRequest) XXX_Size() int {
|
|
return xxx_messageInfo_EntriesRequest.Size(m)
|
|
}
|
|
func (m *EntriesRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_EntriesRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_EntriesRequest proto.InternalMessageInfo
|
|
|
|
func (m *EntriesRequest) GetUrl() string {
|
|
if m != nil {
|
|
return m.Url
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type EntriesResponse struct {
|
|
Entries []*Entry `protobuf:"bytes,1,rep,name=entries,proto3" json:"entries,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *EntriesResponse) Reset() { *m = EntriesResponse{} }
|
|
func (m *EntriesResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*EntriesResponse) ProtoMessage() {}
|
|
func (*EntriesResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_dd517c38176c13bf, []int{5}
|
|
}
|
|
|
|
func (m *EntriesResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_EntriesResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *EntriesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_EntriesResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *EntriesResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_EntriesResponse.Merge(m, src)
|
|
}
|
|
func (m *EntriesResponse) XXX_Size() int {
|
|
return xxx_messageInfo_EntriesResponse.Size(m)
|
|
}
|
|
func (m *EntriesResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_EntriesResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_EntriesResponse proto.InternalMessageInfo
|
|
|
|
func (m *EntriesResponse) GetEntries() []*Entry {
|
|
if m != nil {
|
|
return m.Entries
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterType((*Feed)(nil), "feeds.Feed")
|
|
proto.RegisterType((*Entry)(nil), "feeds.Entry")
|
|
proto.RegisterType((*NewRequest)(nil), "feeds.NewRequest")
|
|
proto.RegisterType((*NewResponse)(nil), "feeds.NewResponse")
|
|
proto.RegisterType((*EntriesRequest)(nil), "feeds.EntriesRequest")
|
|
proto.RegisterType((*EntriesResponse)(nil), "feeds.EntriesResponse")
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterFile("proto/feeds.proto", fileDescriptor_dd517c38176c13bf)
|
|
}
|
|
|
|
var fileDescriptor_dd517c38176c13bf = []byte{
|
|
// 282 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x8c, 0x51, 0x3d, 0x4f, 0xc3, 0x30,
|
|
0x10, 0x25, 0xcd, 0x97, 0xb8, 0xd0, 0x42, 0x4f, 0x50, 0x59, 0x9d, 0x50, 0x06, 0xd4, 0x01, 0x05,
|
|
0x29, 0x4c, 0xc0, 0x86, 0x04, 0x23, 0x43, 0x46, 0xb6, 0x40, 0x0e, 0x29, 0x52, 0x6b, 0x97, 0xd8,
|
|
0x15, 0xe2, 0x07, 0xf0, 0xbf, 0x71, 0x2e, 0x76, 0x53, 0x31, 0xb1, 0xbd, 0xf7, 0xf2, 0xde, 0xdd,
|
|
0xcb, 0x19, 0xe6, 0xdb, 0x4e, 0x19, 0x75, 0xf3, 0x41, 0xd4, 0xe8, 0x82, 0x31, 0xc6, 0x4c, 0xf2,
|
|
0x6b, 0x88, 0x9e, 0x2d, 0x40, 0x84, 0x48, 0xd6, 0x1b, 0x12, 0xc1, 0x65, 0xb0, 0x3a, 0xae, 0x18,
|
|
0xe3, 0x19, 0x84, 0xbb, 0x6e, 0x2d, 0x26, 0x2c, 0xf5, 0x30, 0xff, 0x09, 0x20, 0x7e, 0x92, 0xa6,
|
|
0xfb, 0xc6, 0x19, 0x4c, 0xda, 0xc6, 0xb9, 0x2d, 0xc2, 0x05, 0x24, 0x8d, 0xda, 0xd4, 0xad, 0x74,
|
|
0x76, 0xc7, 0xfc, 0x8c, 0x70, 0x3f, 0x03, 0xcf, 0x21, 0x36, 0xad, 0x59, 0x93, 0x88, 0x58, 0x1b,
|
|
0x08, 0x0a, 0x48, 0xdf, 0x95, 0x34, 0x24, 0x8d, 0x88, 0x59, 0xf7, 0xb4, 0x6f, 0xd6, 0xd4, 0x86,
|
|
0x44, 0x62, 0xe5, 0xb0, 0x62, 0x9c, 0x97, 0x00, 0x2f, 0xf4, 0x55, 0xd1, 0xe7, 0x8e, 0xb4, 0xf9,
|
|
0x67, 0xf7, 0x29, 0x64, 0x9c, 0xd1, 0x5b, 0x25, 0x35, 0xe5, 0x39, 0xcc, 0xfa, 0x3f, 0x69, 0x49,
|
|
0xfb, 0x31, 0x2e, 0x12, 0x8c, 0x91, 0x3b, 0x38, 0xdd, 0x7b, 0x86, 0x18, 0x5e, 0x41, 0x4a, 0x83,
|
|
0x64, 0x8d, 0xe1, 0x2a, 0x2b, 0x4f, 0x8a, 0xe1, 0xaa, 0x7c, 0x96, 0xca, 0x7f, 0x2c, 0x35, 0xc4,
|
|
0xfd, 0x5d, 0x35, 0x16, 0x10, 0xda, 0xb5, 0x38, 0x77, 0xb6, 0xb1, 0xf6, 0x12, 0x0f, 0x25, 0xd7,
|
|
0xea, 0x08, 0xef, 0x21, 0x75, 0x3b, 0xf1, 0xe2, 0x60, 0xf4, 0xd8, 0x73, 0xb9, 0xf8, 0x2b, 0xfb,
|
|
0xec, 0xe3, 0xf4, 0x35, 0xe3, 0xc7, 0x7d, 0x60, 0xc3, 0x5b, 0xc2, 0xe4, 0xf6, 0x37, 0x00, 0x00,
|
|
0xff, 0xff, 0x66, 0x49, 0x14, 0x45, 0xfe, 0x01, 0x00, 0x00,
|
|
}
|