cloudstream-extensions/VidstreamBundle/src/main/kotlin/com/lagradost/VidstreamBundlePlugin.kt

26 lines
970 B
Kotlin
Raw Normal View History

package com.lagradost
2022-08-09 17:42:39 +00:00
import com.lagradost.cloudstream3.plugins.CloudstreamPlugin
import com.lagradost.cloudstream3.plugins.Plugin
import android.content.Context
@CloudstreamPlugin
class VidstreamBundlePlugin : Plugin() {
2022-08-09 17:42:39 +00:00
override fun load(context: Context) {
// All providers should be added in this manner. Please don't edit the providers list directly.
registerExtractorAPI(MultiQuality())
2022-08-10 02:08:53 +00:00
registerExtractorAPI(XStreamCdn())
registerExtractorAPI(LayarKaca())
registerExtractorAPI(DBfilm())
registerExtractorAPI(Luxubu())
registerExtractorAPI(FEmbed())
registerExtractorAPI(Fplayer())
registerExtractorAPI(FeHD())
registerMainAPI(VidEmbedProvider())
registerMainAPI(OpenVidsProvider())
registerMainAPI(KdramaHoodProvider())
registerMainAPI(DramaSeeProvider())
registerMainAPI(AsianLoadProvider())
registerMainAPI(WatchAsianProvider())
2022-08-09 17:42:39 +00:00
}
}