Match anime correctly

This commit is contained in:
Dan Jones 2024-10-23 22:10:31 -05:00
commit ec3db89d1a
2 changed files with 19 additions and 6 deletions

View file

@ -28,10 +28,9 @@ func main() {
data, err := convids.NewData(dataPath)
cli.HandleErr(err)
fmt.Printf("Data: %+v\n", data)
for s := range data.AllShows(false) {
fmt.Printf("Show: %+v\n", s)
}
convids.WalkFiles(data, false, false, func(s *convids.Show, path string) error {
fmt.Printf("%s for %+v\n", path, s)
return nil
})
fmt.Println("\nDone!")
}