cloudstream-extensions-mult.../DubokuProvider/src/main/kotlin/com/lagradost/DubokuProviderPlugin.kt

14 lines
418 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 DubokuProviderPlugin: 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.
registerMainAPI(DubokuProvider())
2022-08-09 17:42:39 +00:00
}
}