cloudstream-extensions-uk/AnimeUAProvider/src/main/kotlin/com/lagradost/AnimeUAProviderPlugin.kt

13 lines
419 B
Kotlin
Raw Normal View History

2023-02-23 13:38:19 -05:00
package com.lagradost
import com.lagradost.cloudstream3.plugins.CloudstreamPlugin
import com.lagradost.cloudstream3.plugins.Plugin
import android.content.Context
@CloudstreamPlugin
class AnimeUAProviderPlugin: Plugin() {
override fun load(context: Context) {
// All providers should be added in this manner. Please don't edit the providers list directly.
registerMainAPI(AnimeUAProvider())
}
}