2022-09-09 16:09:54 +00:00
|
|
|
package com.hexated
|
2022-08-31 04:26:39 +00:00
|
|
|
|
|
|
|
import com.lagradost.cloudstream3.plugins.CloudstreamPlugin
|
|
|
|
import com.lagradost.cloudstream3.plugins.Plugin
|
|
|
|
import android.content.Context
|
|
|
|
|
|
|
|
@CloudstreamPlugin
|
2023-07-20 12:35:26 +00:00
|
|
|
class RebahinProviderPlugin : Plugin() {
|
2022-08-31 04:26:39 +00:00
|
|
|
override fun load(context: Context) {
|
|
|
|
// All providers should be added in this manner. Please don't edit the providers list directly.
|
2022-09-09 16:09:54 +00:00
|
|
|
registerMainAPI(RebahinProvider())
|
2023-07-20 12:35:26 +00:00
|
|
|
registerMainAPI(Kitanonton())
|
|
|
|
registerMainAPI(Cgvindo())
|
2022-08-31 04:26:39 +00:00
|
|
|
}
|
|
|
|
}
|