hnbot/main.go

10 lines
192 B
Go
Raw Permalink Normal View History

package main
func main() {
2023-04-16 17:56:42 +00:00
stories := FetchHackerNewsTopStories()
filtered := CurateContentForStackerNews(&stories)
for _, story := range *filtered {
2023-04-16 17:56:42 +00:00
PostStoryToStackerNews(&story)
}
}