18 lines
260 B
Go
Raw Normal View History

2022-06-29 02:51:58 +00:00
package main
import (
"github.com/akyoto/color"
"github.com/animenotifier/notify.moe/arn"
)
func main() {
defer arn.Node.Close()
for post := range arn.StreamPosts() {
if post.Parent() == nil {
color.Yellow(post.ID)
color.Red(post.Text)
}
}
}