Documentation ¶ Index ¶ Variables func ParseArguments(arguments []string) (map[string]*string, error) type Article type Config func ReadConfig(filePath string) (Config, error) type Feed func (feed *Feed) FromConfig(config Config) error func (feed *Feed) ToXML() error Constants ¶ This section is empty. Variables ¶ View Source var ( Action *log.Logger Warn *log.Logger Info *log.Logger Error *log.Logger Fatal *log.Logger ) Functions ¶ func ParseArguments ¶ func ParseArguments(arguments []string) (map[string]*string, error) Types ¶ type Article ¶ type Article struct { Id int Guid string Title string Filename string Description string DatePublished time.Time // optional Topic string } type Config ¶ type Config struct { Description string InputFolder string Author string Link string // optional (one is required) OutputFolder string OutputFile string } func ReadConfig ¶ func ReadConfig(filePath string) (Config, error) type Feed ¶ type Feed struct { Articles []Article // contains filtered or unexported fields } func (*Feed) FromConfig ¶ func (feed *Feed) FromConfig(config Config) error func (*Feed) ToXML ¶ func (feed *Feed) ToXML() error Source Files ¶ View all Source files args.goconfig.gologs.gomd.gotypes.goxml.go Click to show internal directories. Click to hide internal directories.