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

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