Added check for diff ignores

This commit is contained in:
2018-03-09 13:42:45 +01:00
parent c95355383e
commit 8a57178664
9 changed files with 88 additions and 46 deletions

View File

@ -2,7 +2,8 @@ package animediff
// Difference describes a difference between two anime.
type Difference interface {
String() string
Type() string
Explanation() string
DetailsA() string
DetailsB() string
}