mirror of
https://github.com/miniflux/v2.git
synced 2025-09-15 18:57:04 +00:00
refactor: unexport symbols
This commit is contained in:
parent
a4d51b5586
commit
566670cc06
36 changed files with 369 additions and 376 deletions
|
@ -9,21 +9,21 @@ import (
|
|||
"miniflux.app/v2/internal/reader/dublincore"
|
||||
)
|
||||
|
||||
// RDF sepcs: https://web.resource.org/rss/1.0/spec
|
||||
type RDF struct {
|
||||
// rdf sepcs: https://web.resource.org/rss/1.0/spec
|
||||
type rdf struct {
|
||||
XMLName xml.Name `xml:"http://www.w3.org/1999/02/22-rdf-syntax-ns# RDF"`
|
||||
Channel RDFChannel `xml:"channel"`
|
||||
Items []RDFItem `xml:"item"`
|
||||
Channel rdfChannel `xml:"channel"`
|
||||
Items []rdfItem `xml:"item"`
|
||||
}
|
||||
|
||||
type RDFChannel struct {
|
||||
type rdfChannel struct {
|
||||
Title string `xml:"title"`
|
||||
Link string `xml:"link"`
|
||||
Description string `xml:"description"`
|
||||
dublincore.DublinCoreChannelElement
|
||||
}
|
||||
|
||||
type RDFItem struct {
|
||||
type rdfItem struct {
|
||||
Title string `xml:"http://purl.org/rss/1.0/ title"`
|
||||
Link string `xml:"link"`
|
||||
Description string `xml:"description"`
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue