cloudstream-extensions-hexated/DramaidProvider/src/main/kotlin/com/hexated/DramaidProviderPlugin.kt

18 lines
573 B
Kotlin
Raw Permalink Normal View History

2022-09-09 16:09:54 +00:00
package com.hexated
2022-08-31 04:26:39 +00:00
import com.lagradost.cloudstream3.plugins.CloudstreamPlugin
import com.lagradost.cloudstream3.plugins.Plugin
import android.content.Context
@CloudstreamPlugin
2022-09-09 16:09:54 +00:00
class DramaidProviderPlugin: Plugin() {
2022-08-31 04:26:39 +00:00
override fun load(context: Context) {
// All providers should be added in this manner. Please don't edit the providers list directly.
2022-09-09 16:09:54 +00:00
registerMainAPI(DramaidProvider())
2023-07-22 07:59:26 +00:00
registerMainAPI(Oppadrama())
2022-11-01 23:44:15 +00:00
registerExtractorAPI(Vanfem())
2023-08-19 01:01:42 +00:00
registerExtractorAPI(Filelions())
2023-10-15 14:10:02 +00:00
registerExtractorAPI(Gcam())
2022-08-31 04:26:39 +00:00
}
}