15 lines
212 B
Go
Raw Normal View History

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