cloudstream-extensions-hexated/Dizikorea/src/main/kotlin/com/hexated/DizikoreaPlugin.kt

14 lines
406 B
Kotlin
Raw Normal View History

2022-10-07 12:04:13 +00:00
package com.hexated
import com.lagradost.cloudstream3.plugins.CloudstreamPlugin
import com.lagradost.cloudstream3.plugins.Plugin
import android.content.Context
@CloudstreamPlugin
class DizikoreaPlugin: Plugin() {
override fun load(context: Context) {
// All providers should be added in this manner. Please don't edit the providers list directly.
registerMainAPI(Dizikorea())
}
}