summaryrefslogtreecommitdiff
path: root/fetch/gopher.go
diff options
context:
space:
mode:
Diffstat (limited to 'fetch/gopher.go')
-rw-r--r--fetch/gopher.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/fetch/gopher.go b/fetch/gopher.go
index 29afef1..d42d5eb 100644
--- a/fetch/gopher.go
+++ b/fetch/gopher.go
@@ -33,6 +33,12 @@ func newGopherFeed(remoteURL *url.URL, title string) (*core.Feed, error) {
return nil, fmt.Errorf("Feeds served over gopher are currently unsupported.")
}
+// updateGopherFeed will check an existing core.Feed for updates
+func updateGopherFeed(*core.Feed) error {
+ // TODO
+ return fmt.Errorf("Feeds served over gopher are currently unsupported.")
+}
+
// newGopherPage will create a new core.Page given a gopher url
func newGopherPage(remoteURL *url.URL, title string) (*core.Page, error) {
var page core.Page