dublincore.go 538 B

123456789101112
  1. // Copyright 2019 Frédéric Guillot. All rights reserved.
  2. // Use of this source code is governed by the Apache 2.0
  3. // license that can be found in the LICENSE file.
  4. package rss // import "miniflux.app/reader/rss"
  5. // DublinCoreElement represents Dublin Core XML elements.
  6. type DublinCoreElement struct {
  7. DublinCoreDate string `xml:"http://purl.org/dc/elements/1.1/ date"`
  8. DublinCoreCreator string `xml:"http://purl.org/dc/elements/1.1/ creator"`
  9. DublinCoreContent string `xml:"http://purl.org/rss/1.0/modules/content/ encoded"`
  10. }