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

17 lines
526 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())
2022-11-29 13:08:14 +00:00
registerExtractorAPI(Sbflix())
registerExtractorAPI(Sbrulz())
2023-06-10 03:55:22 +00:00
registerExtractorAPI(Sbmiz())
2022-09-11 13:00:33 +00:00
}
}