cs3xxx-repo/ExampleProvider/src/main/kotlin/com/example/ExamplePlugin.kt

14 lines
413 B
Kotlin

package com.example
import com.lagradost.cloudstream3.plugins.CloudstreamPlugin
import com.lagradost.cloudstream3.plugins.Plugin
import com.lagradost.cloudstream3.APIHolder
import android.content.Context
@CloudstreamPlugin
class TestPlugin: Plugin() {
override fun load(context: Context) {
// All providers should be added in this manner
APIHolder.allProviders.add(ExampleProvider())
}
}