Implemented anime characters

This commit is contained in:
2017-07-13 07:53:36 +02:00
parent 84e246d31f
commit a539fa0f83
7 changed files with 104 additions and 10 deletions

View File

@ -0,0 +1,14 @@
package main
import (
"github.com/animenotifier/arn"
"github.com/fatih/color"
)
func main() {
anime, _ := arn.GetAnime("6887")
err := anime.RefreshAnimeCharacters()
arn.PanicOnError(err)
color.Green("Finished.")
}