Making package easily usable with goinstall. Including the reference to go-pkg-xmlx and the build target in the makefile.
This commit is contained in:
parent
31d02da4ae
commit
1a851548db
18 changed files with 4 additions and 4 deletions
21
item.go
Normal file
21
item.go
Normal file
|
@ -0,0 +1,21 @@
|
|||
package feeder
|
||||
|
||||
type Item struct {
|
||||
// RSS and Shared fields
|
||||
Title string
|
||||
Links []*Link
|
||||
Description string
|
||||
Author Author
|
||||
Categories []*Category
|
||||
Comments string
|
||||
Enclosures []*Enclosure
|
||||
Guid string
|
||||
PubDate string
|
||||
Source *Source
|
||||
|
||||
// Atom specific fields
|
||||
Id string
|
||||
Generator *Generator
|
||||
Contributors []string
|
||||
Content *Content
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue