cs-darkdemon-extensions/OnlineMoviesHinditProvider/src/main/kotlin/com/darkdemon/OnlineMoviesHindiPlugin.kt

14 lines
432 B
Kotlin
Raw Normal View History

package com.darkdemon
2022-09-13 16:12:19 +00:00
import com.lagradost.cloudstream3.plugins.CloudstreamPlugin
import com.lagradost.cloudstream3.plugins.Plugin
import android.content.Context
@CloudstreamPlugin
class OnlineMoviesHindiPlugin: Plugin() {
2022-09-13 16:12:19 +00:00
override fun load(context: Context) {
// All providers should be added in this manner. Please don't edit the providers list directly.
registerMainAPI(OnlineMoviesHindiProvider())
2022-09-13 16:12:19 +00:00
}
}