10 lines
192 B
Go
10 lines
192 B
Go
package main
|
|
|
|
func main() {
|
|
stories := FetchHackerNewsTopStories()
|
|
filtered := CurateContentForStackerNews(&stories)
|
|
for _, story := range *filtered {
|
|
PostStoryToStackerNews(&story)
|
|
}
|
|
}
|