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

19 lines
619 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())
2022-10-15 15:26:51 +00:00
}
}