34 lines
726 B
Go
Raw Normal View History

2018-03-09 23:25:37 +00:00
package animediff
// EndDate describes differing Romaji titles.
type EndDate struct {
DateA string
DateB string
NumericHash uint64
}
2018-11-15 11:19:40 +00:00
// TypeName returns the diff type.
func (diff *EndDate) TypeName() string {
2018-03-09 23:25:37 +00:00
return "EndDate"
}
// Explanation returns the description.
func (diff *EndDate) Explanation() string {
return "End dates are different"
}
// DetailsA shows the details for the first anime.
func (diff *EndDate) DetailsA() string {
return diff.DateA
}
// DetailsB shows the details for the second anime.
func (diff *EndDate) DetailsB() string {
return diff.DateB
}
// Hash returns the hash for the suggested value (from anime B).
func (diff *EndDate) Hash() uint64 {
return diff.NumericHash
}