9 lines
160 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 {
String() string
DetailsA() string
DetailsB() string
}