Added canonical title diff

This commit is contained in:
2018-03-09 04:58:36 +01:00
parent ee04951f0e
commit 3ac77b889b
6 changed files with 71 additions and 28 deletions

22
utils/AnimeTitleDiff.go Normal file
View File

@ -0,0 +1,22 @@
package utils
// AnimeTitleDiff describes differing titles.
type AnimeTitleDiff struct {
TitleA string
TitleB string
}
// String returns the description.
func (diff *AnimeTitleDiff) String() string {
return "Titles are different"
}
// DetailsA shows the details for the first anime.
func (diff *AnimeTitleDiff) DetailsA() string {
return diff.TitleA
}
// DetailsB shows the details for the second anime.
func (diff *AnimeTitleDiff) DetailsB() string {
return diff.TitleB
}