11 lines
199 B
Go
Raw Normal View History

2018-03-09 04:12:22 +00:00
package animediff
// Difference describes a difference between two anime.
type Difference interface {
2018-11-15 11:19:40 +00:00
TypeName() string
2018-03-09 12:42:45 +00:00
Explanation() string
2018-03-09 04:12:22 +00:00
DetailsA() string
DetailsB() string
2018-03-09 13:48:00 +00:00
Hash() uint64
2018-03-09 04:12:22 +00:00
}