package outputs
// Output is an interface for RSS outputters.
type Output interface {
Do(dest, feedName, url, title, body string) error
Name() string
}