mirror of
https://github.com/5rahim/seanime
synced 2026-05-02 22:42:11 +02:00
21 lines
353 B
Go
21 lines
353 B
Go
package tracker
|
|
|
|
const (
|
|
AnimeKind = "anime"
|
|
MangaKind = "manga"
|
|
AnimeAndMangaKind = "anime_and_manga"
|
|
)
|
|
|
|
type (
|
|
Kind string // Kind is the type of tracker
|
|
|
|
BaseTracker interface {
|
|
// GetName returns the name of the tracker
|
|
GetName() string
|
|
GetLogo() string
|
|
GetUsername() string
|
|
GetPassword() string
|
|
GetKind() Kind
|
|
}
|
|
)
|