mirror of
https://github.com/hexated/cloudstream-extensions-hexated.git
synced 2024-08-15 00:03:22 +00:00
23 lines
No EOL
503 B
Kotlin
23 lines
No EOL
503 B
Kotlin
package com.hexated
|
|
|
|
import com.lagradost.cloudstream3.TvType
|
|
import com.lagradost.cloudstream3.mainPageOf
|
|
|
|
class Animesaga : Movierulzhd() {
|
|
|
|
override var mainUrl = "https://www.animesaga.in"
|
|
override var name = "Animesaga"
|
|
override val supportedTypes = setOf(
|
|
TvType.Anime,
|
|
TvType.AnimeMovie,
|
|
TvType.OVA
|
|
)
|
|
|
|
override val mainPage = mainPageOf(
|
|
"movies" to "Movies",
|
|
"tvshows" to "TV-Shows",
|
|
"genre/hindi-dub" to "Hindi Dub",
|
|
)
|
|
|
|
|
|
} |