Added a patch to remove duplicates

This commit is contained in:
Eduard Urbach 2017-11-15 11:49:05 +01:00
parent 91e8537e9e
commit 84568e3899

View File

@ -0,0 +1,12 @@
package main
import (
"github.com/animenotifier/arn"
)
func main() {
for animeList := range arn.StreamAnimeLists() {
animeList.RemoveDuplicates()
animeList.Save()
}
}