commit cb8d99214a3c34ff33d52e67486661679acb1006 Author: Andrew Ekstedt Date: Thu Sep 30 00:23:50 2021 +0000 Initial commit diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..e1dca16 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module git.tilde.town/magical/feedget + +go 1.14 diff --git a/main.go b/main.go new file mode 100644 index 0000000..6e4c107 --- /dev/null +++ b/main.go @@ -0,0 +1,3 @@ +// Feedget scrapes RSS feeds (and other sources) +// and spits the latest headline from each onto a static web page. +package main