11 lines
195 B
Go
Raw Normal View History

2018-03-09 05:12:22 +01:00
package animediff
// Difference describes a difference between two anime.
type Difference interface {
2018-03-09 13:42:45 +01:00
Type() string
Explanation() string
2018-03-09 05:12:22 +01:00
DetailsA() string
DetailsB() string
2018-03-09 14:48:00 +01:00
Hash() uint64
2018-03-09 05:12:22 +01:00
}