15 lines
354 B
Go
Raw Normal View History

2018-03-09 03:03:31 +00:00
package utils
import (
"github.com/animenotifier/mal"
2019-06-06 23:55:24 +00:00
"github.com/animenotifier/notify.moe/arn"
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
}