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

15 lines
440 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-02 01:58:58 +00:00
registerMainAPI(StremioC())
2023-03-30 21:36:51 +00:00
}
}