You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
podgrab/model/opmlModels.go

35 lines
780 B

package model
4 years ago
import (
"encoding/xml"
"time"
)
type OpmlModel struct {
XMLName xml.Name `xml:"opml"`
Text string `xml:",chardata"`
Version string `xml:"version,attr"`
Head OpmlHead `xml:"head"`
Body OpmlBody `xml:"body"`
}
type OpmlHead struct {
4 years ago
Text string `xml:",chardata"`
Title string `xml:"title"`
DateCreated time.Time `xml:"dateCreated"`
}
type OpmlBody struct {
Text string `xml:",chardata"`
Outline []OpmlOutline `xml:"outline"`
}
type OpmlOutline struct {
4 years ago
Title string `xml:"title,attr"`
XmlUrl string `xml:"xmlUrl,attr"`
Text string `xml:",chardata"`
AttrText string `xml:"text,attr"`
Type string `xml:"type,attr"`
Outline []OpmlOutline `xml:"outline"`
}