cloudstream-extensions-hexated/YomoviesProvider/src/main/kotlin/com/hexated/YomoviesProviderPlugin.kt
hexated 91f18d14dc fixed :
- Kuramanime
- Rebahin
- Yomovies
added :
- Kitanonton
2022-10-03 21:22:01 +07:00

15 lines
No EOL
466 B
Kotlin

package com.hexated
import com.lagradost.cloudstream3.plugins.CloudstreamPlugin
import com.lagradost.cloudstream3.plugins.Plugin
import android.content.Context
@CloudstreamPlugin
class YomoviesProviderPlugin: Plugin() {
override fun load(context: Context) {
// All providers should be added in this manner. Please don't edit the providers list directly.
registerMainAPI(YomoviesProvider())
registerExtractorAPI(SpeedoStream1())
}
}