Files
rsser/outputs/output.go
T

8 lines
155 B
Go
Raw Normal View History

2026-08-05 12:06:46 +05:00
package outputs
// Output is an interface for RSS outputters.
type Output interface {
Do(dest, feedName, url, title, body string) error
Name() string
}