13 lines
176 B
Go
Raw Normal View History

2017-11-15 10:49:05 +00:00
package main
import (
"github.com/animenotifier/arn"
)
func main() {
for animeList := range arn.StreamAnimeLists() {
animeList.RemoveDuplicates()
animeList.Save()
}
}