Created animediff package

This commit is contained in:
2018-03-09 05:12:22 +01:00
parent 3ac77b889b
commit 1910b3c2d8
8 changed files with 93 additions and 59 deletions

View File

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