15 lines
212 B
Go
Raw Normal View History

2017-11-15 10:49:05 +00:00
package main
import (
2019-06-03 09:32:43 +00:00
"github.com/animenotifier/notify.moe/arn"
2017-11-15 10:49:05 +00:00
)
func main() {
2017-11-15 11:07:23 +00:00
defer arn.Node.Close()
2017-11-15 10:49:05 +00:00
for animeList := range arn.StreamAnimeLists() {
animeList.RemoveDuplicates()
animeList.Save()
}
}