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