30 lines
477 B
Go
Raw Normal View History

2017-06-26 21:41:16 +00:00
package main
import (
"github.com/animenotifier/arn"
"github.com/fatih/color"
)
func main() {
// Get a stream of all posts
2017-06-27 10:39:41 +00:00
allPosts, err := arn.StreamPosts()
2017-06-26 21:41:16 +00:00
arn.PanicOnError(err)
// Iterate over the stream
for post := range allPosts {
// Fix text
color.Yellow(post.Text)
post.Text = arn.FixPostText(post.Text)
color.Green(post.Text)
// Tags
if post.Tags == nil {
post.Tags = []string{}
}
// Save
err = post.Save()
arn.PanicOnError(err)
}
}