notify.moe/patches/animelist-remove-duplicates/animelist-remove-duplicates.go

15 lines
201 B
Go

package main
import (
"github.com/animenotifier/arn"
)
func main() {
defer arn.Node.Close()
for animeList := range arn.StreamAnimeLists() {
animeList.RemoveDuplicates()
animeList.Save()
}
}