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:
jim teeuwen 2011-01-20 22:57:04 +01:00
parent 31d02da4ae
commit 1a851548db
18 changed files with 4 additions and 4 deletions

21
item.go Normal file
View 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
}