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

19 lines
611 B
Kotlin
Raw Normal View History

2022-09-11 13:00:33 +00:00
package com.hexated
import com.lagradost.cloudstream3.plugins.CloudstreamPlugin
import com.lagradost.cloudstream3.plugins.Plugin
import android.content.Context
@CloudstreamPlugin
class MovierulzhdPlugin: Plugin() {
override fun load(context: Context) {
// All providers should be added in this manner. Please don't edit the providers list directly.
registerMainAPI(Movierulzhd())
2023-07-27 16:09:25 +00:00
registerMainAPI(Hdmovie2())
2023-12-09 19:06:33 +00:00
registerMainAPI(Animesaga())
registerExtractorAPI(Sbnmp())
2023-07-27 16:09:25 +00:00
registerExtractorAPI(Akamaicdn())
2023-12-09 19:06:33 +00:00
registerExtractorAPI(AnimesagaStream())
2022-09-11 13:00:33 +00:00
}
}