Created animediff package
This commit is contained in:
22
utils/animediff/CanonicalTitle.go
Normal file
22
utils/animediff/CanonicalTitle.go
Normal file
@ -0,0 +1,22 @@
|
||||
package animediff
|
||||
|
||||
// CanonicalTitle describes differing titles.
|
||||
type CanonicalTitle struct {
|
||||
TitleA string
|
||||
TitleB string
|
||||
}
|
||||
|
||||
// String returns the description.
|
||||
func (diff *CanonicalTitle) String() string {
|
||||
return "Canonical titles are different"
|
||||
}
|
||||
|
||||
// DetailsA shows the details for the first anime.
|
||||
func (diff *CanonicalTitle) DetailsA() string {
|
||||
return diff.TitleA
|
||||
}
|
||||
|
||||
// DetailsB shows the details for the second anime.
|
||||
func (diff *CanonicalTitle) DetailsB() string {
|
||||
return diff.TitleB
|
||||
}
|
24
utils/animediff/Genres.go
Normal file
24
utils/animediff/Genres.go
Normal file
@ -0,0 +1,24 @@
|
||||
package animediff
|
||||
|
||||
import "strings"
|
||||
|
||||
// Genres describes differing genres.
|
||||
type Genres struct {
|
||||
GenresA []string
|
||||
GenresB []string
|
||||
}
|
||||
|
||||
// String returns the description.
|
||||
func (diff *Genres) String() string {
|
||||
return "Genres are different"
|
||||
}
|
||||
|
||||
// DetailsA shows the details for the first anime.
|
||||
func (diff *Genres) DetailsA() string {
|
||||
return strings.Join(diff.GenresA, ", ")
|
||||
}
|
||||
|
||||
// DetailsB shows the details for the second anime.
|
||||
func (diff *Genres) DetailsB() string {
|
||||
return strings.Join(diff.GenresB, ", ")
|
||||
}
|
8
utils/animediff/Interface.go
Normal file
8
utils/animediff/Interface.go
Normal file
@ -0,0 +1,8 @@
|
||||
package animediff
|
||||
|
||||
// Difference describes a difference between two anime.
|
||||
type Difference interface {
|
||||
String() string
|
||||
DetailsA() string
|
||||
DetailsB() string
|
||||
}
|
22
utils/animediff/JapaneseTitle.go
Normal file
22
utils/animediff/JapaneseTitle.go
Normal file
@ -0,0 +1,22 @@
|
||||
package animediff
|
||||
|
||||
// JapaneseTitle describes differing Japanese titles.
|
||||
type JapaneseTitle struct {
|
||||
TitleA string
|
||||
TitleB string
|
||||
}
|
||||
|
||||
// String returns the description.
|
||||
func (diff *JapaneseTitle) String() string {
|
||||
return "Japanese titles are different"
|
||||
}
|
||||
|
||||
// DetailsA shows the details for the first anime.
|
||||
func (diff *JapaneseTitle) DetailsA() string {
|
||||
return diff.TitleA
|
||||
}
|
||||
|
||||
// DetailsB shows the details for the second anime.
|
||||
func (diff *JapaneseTitle) DetailsB() string {
|
||||
return diff.TitleB
|
||||
}
|
Reference in New Issue
Block a user