Added AMV video details

This commit is contained in:
2018-10-28 12:24:26 +09:00
parent 6201818d3b
commit 342948dbb3
3 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,18 @@
package main
import (
"github.com/animenotifier/arn"
"github.com/fatih/color"
)
func main() {
color.Yellow("Deleting all AMV tags")
defer color.Green("Finished.")
defer arn.Node.Close()
for amv := range arn.StreamAMVs() {
amv.Tags = []string{}
amv.Save()
}
}