Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Anime ¶
type Anime struct {
Id string `firestore:"-"`
Name string `firestore:"name"`
Episodes []*Episode `firestore:"episodes"`
}
func (*Anime) SendToKaori ¶
type EpLanguage ¶
type EpLanguage string
type Episode ¶
type Episode struct {
Number string `firestore:"number"`
Title string
Links map[EpLanguage]LanguageInfo `firestore:"links"`
}
func NewEpisode ¶
func NewEpisode() *Episode
type LanguageInfo ¶ added in v0.0.18
type LanguageInfo struct {
Modality string
Quality map[EpQuality]map[string]StreamLink
}
type StreamLink ¶
type StreamLink struct {
Link string `firestore:"link"`
Width int `firestore:"width"`
Height int `firestore:"height"`
Duration float64 `firestore:"duration"`
Bitrate int `firestore:"bitrate"`
}
func (*StreamLink) GetQuality ¶
func (sl *StreamLink) GetQuality(link string) error
Click to show internal directories.
Click to hide internal directories.