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