cloudstream-extensions-hexated/Movierulzhd/src/main/kotlin/com/hexated/Animesaga.kt

23 lines
538 B
Kotlin
Raw Normal View History

2023-12-09 19:06:33 +00:00
package com.hexated
2023-12-10 05:27:51 +00:00
import com.lagradost.cloudstream3.TvType
2023-12-09 19:06:33 +00:00
import com.lagradost.cloudstream3.mainPageOf
class Animesaga : Movierulzhd() {
2024-01-16 14:07:26 +00:00
override var mainUrl = "https://anplay.in"
2024-03-02 05:46:53 +00:00
override var name = "Anplay"
2023-12-10 05:27:51 +00:00
override val supportedTypes = setOf(
TvType.Anime,
TvType.AnimeMovie,
TvType.OVA
)
2023-12-09 19:06:33 +00:00
override val mainPage = mainPageOf(
"movies" to "Movies",
"tvshows" to "TV-Shows",
"genre/hindi-dub" to "Hindi Dub",
2024-03-02 05:46:53 +00:00
"genre/crunchyroll" to "Crunchyroll",
2023-12-09 19:06:33 +00:00
)
2024-03-02 05:46:53 +00:00
}