cloudstream-extensions-hexated/SoraStream/src/main/kotlin/com/hexated/SoraStreamPlugin.kt

28 lines
983 B
Kotlin
Raw Normal View History

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())
registerExtractorAPI(StreamM4u())
2023-01-17 03:55:16 +00:00
registerExtractorAPI(Sblongvu())
2023-02-22 09:31:40 +00:00
registerExtractorAPI(Keephealth())
2023-03-10 22:22:24 +00:00
registerExtractorAPI(FileMoonIn())
2023-04-08 12:43:46 +00:00
registerExtractorAPI(Sbnet())
2023-04-08 14:14:42 +00:00
registerExtractorAPI(Chillx())
registerExtractorAPI(Watchx())
2023-04-19 09:52:31 +00:00
registerExtractorAPI(StreamhideCom())
2023-04-20 07:22:52 +00:00
registerExtractorAPI(Movhide())
2023-05-02 19:45:23 +00:00
registerExtractorAPI(Moviesm4u())
registerExtractorAPI(Fembed9hd())
registerExtractorAPI(Sbasian())
2023-05-05 12:51:07 +00:00
registerExtractorAPI(Bestx())
2022-10-15 15:26:51 +00:00
}
}