Added anime list comparison

This commit is contained in:
2017-10-21 19:16:11 +02:00
parent 1a693fec05
commit 6c0f8a6318
7 changed files with 172 additions and 0 deletions

10
utils/Comparison.go Normal file
View File

@ -0,0 +1,10 @@
package utils
import "github.com/animenotifier/arn"
// Comparison of an anime between 2 users.
type Comparison struct {
Anime *arn.Anime
ItemA *arn.AnimeListItem
ItemB *arn.AnimeListItem
}