Initial commit.

This commit is contained in:
2026-08-05 12:06:46 +05:00
commit f37a1422e2
21 changed files with 1026 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
package outputs
// Output is an interface for RSS outputters.
type Output interface {
Do(dest, feedName, url, title, body string) error
Name() string
}