15 lines
354 B
Go
Raw Normal View History

2018-03-09 04:03:31 +01:00
package utils
import (
"github.com/animenotifier/mal"
2019-06-07 08:55:24 +09:00
"github.com/animenotifier/notify.moe/arn"
2018-03-09 05:12:22 +01:00
"github.com/animenotifier/notify.moe/utils/animediff"
2018-03-09 04:03:31 +01:00
)
2018-03-09 04:58:36 +01:00
// MALComparison encapsulates the difference between an ARN anime and a MAL anime.
2018-03-09 04:03:31 +01:00
type MALComparison struct {
Anime *arn.Anime
MALAnime *mal.Anime
2018-03-09 05:12:22 +01:00
Differences []animediff.Difference
2018-03-09 04:03:31 +01:00
}