cloudstream-extensions-hexated/Xcineio/src/main/kotlin/com/hexated/XCinePlugin.kt

20 lines
669 B
Kotlin
Raw Normal View History

2022-11-16 15:37:58 +00:00
package com.hexated
import com.lagradost.cloudstream3.plugins.CloudstreamPlugin
import com.lagradost.cloudstream3.plugins.Plugin
import android.content.Context
@CloudstreamPlugin
2023-01-02 02:45:14 +00:00
class XCinePlugin: Plugin() {
2022-11-16 15:37:58 +00:00
override fun load(context: Context) {
// All providers should be added in this manner. Please don't edit the providers list directly.
2023-01-02 02:45:14 +00:00
registerMainAPI(XCine())
2022-11-16 15:37:58 +00:00
registerExtractorAPI(StreamTapeAdblockuser())
registerExtractorAPI(StreamTapeTo())
registerExtractorAPI(Mixdrp())
registerExtractorAPI(DoodReExtractor())
registerExtractorAPI(Streamzz())
registerExtractorAPI(Streamcrypt())
}
}