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