Files
2026-08-05 12:06:46 +05:00

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
}