2022-10-15 15:26:51 +00:00
|
|
|
|
|
|
|
package com.hexated
|
|
|
|
|
|
|
|
import com.lagradost.cloudstream3.plugins.CloudstreamPlugin
|
|
|
|
import com.lagradost.cloudstream3.plugins.Plugin
|
|
|
|
import android.content.Context
|
|
|
|
|
|
|
|
@CloudstreamPlugin
|
|
|
|
class SoraStreamPlugin: Plugin() {
|
|
|
|
override fun load(context: Context) {
|
|
|
|
// All providers should be added in this manner. Please don't edit the providers list directly.
|
|
|
|
registerMainAPI(SoraStream())
|
2023-01-31 06:30:37 +00:00
|
|
|
registerMainAPI(SoraStreamLite())
|
2023-07-26 07:31:20 +00:00
|
|
|
registerExtractorAPI(Animefever())
|
|
|
|
registerExtractorAPI(Multimovies())
|
|
|
|
registerExtractorAPI(MultimoviesSB())
|
2023-07-31 04:30:48 +00:00
|
|
|
registerExtractorAPI(Yipsu())
|
2023-08-07 14:17:34 +00:00
|
|
|
registerExtractorAPI(Mwish())
|
|
|
|
registerExtractorAPI(TravelR())
|
2022-10-15 15:26:51 +00:00
|
|
|
}
|
|
|
|
}
|