cloudstream-extensions-hexated/StremioX/src/main/kotlin/com/hexated/StremioXPlugin.kt

15 lines
439 B
Kotlin
Raw Normal View History

2023-03-30 21:36:51 +00:00
package com.hexated
import com.lagradost.cloudstream3.plugins.CloudstreamPlugin
import com.lagradost.cloudstream3.plugins.Plugin
import android.content.Context
@CloudstreamPlugin
class StremioXPlugin: Plugin() {
override fun load(context: Context) {
// All providers should be added in this manner. Please don't edit the providers list directly.
registerMainAPI(StremioX())
2023-04-01 17:42:02 +00:00
registerMainAPI(Stremio())
2023-03-30 21:36:51 +00:00
}
}