2022-08-09 23:00:08 +00:00
|
|
|
package com.lagradost
|
2022-08-09 17:42:39 +00:00
|
|
|
|
|
|
|
import com.lagradost.cloudstream3.plugins.CloudstreamPlugin
|
|
|
|
import com.lagradost.cloudstream3.plugins.Plugin
|
|
|
|
import android.content.Context
|
|
|
|
|
|
|
|
@CloudstreamPlugin
|
2022-08-10 23:05:19 +00:00
|
|
|
class SflixProviderPlugin : Plugin() {
|
2022-08-09 17:42: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-08-09 23:00:08 +00:00
|
|
|
registerMainAPI(SflixProvider())
|
2022-08-10 23:05:19 +00:00
|
|
|
registerMainAPI(SolarmovieProvider())
|
|
|
|
registerMainAPI(TwoEmbedProvider())
|
|
|
|
registerMainAPI(DopeboxProvider())
|
2022-08-11 14:55:58 +00:00
|
|
|
registerMainAPI(ZoroProvider())
|
2022-08-17 09:23:26 +00:00
|
|
|
registerMainAPI(HDTodayProvider())
|
2022-08-09 17:42:39 +00:00
|
|
|
}
|
|
|
|
}
|