MCPcopy Create free account
hub / github.com/goinaction/code / Channel

Struct Channel

chapter9/listing12/listing12_test.go:103–110  ·  view source on GitHub ↗

Channel defines the fields associated with the channel tag in the buoy RSS document.

Source from the content-addressed store, hash-verified

101// Channel defines the fields associated with the channel tag in
102// the buoy RSS document.
103type Channel struct {
104 XMLName xml.Name `xml:"channel"`
105 Title string `xml:"title"`
106 Description string `xml:"description"`
107 Link string `xml:"link"`
108 PubDate string `xml:"pubDate"`
109 Items []Item `xml:"item"`
110}
111
112// Document defines the fields associated with the buoy RSS document.
113type Document struct {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected