change to feed.Foo methods instead of passing in feed to package func

This commit is contained in:
Bel LaPointe
2025-04-27 11:55:00 -06:00
parent ce02422b1d
commit 18fd8dfac5
5 changed files with 24 additions and 5 deletions

10
src/feeds/http.go Normal file
View File

@@ -0,0 +1,10 @@
package feeds
import (
"context"
"io"
)
func (feed Feed) Fetch(ctx context.Context) (Items, error) {
return nil, io.EOF
}