cloudstream-extensions-hexated/Moflix/src/main/kotlin/com/hexated/MoflixPlugin.kt

20 lines
652 B
Kotlin
Raw Normal View History

2024-01-15 06:24:24 +00:00
package com.hexated
import com.lagradost.cloudstream3.plugins.CloudstreamPlugin
import com.lagradost.cloudstream3.plugins.Plugin
import android.content.Context
@CloudstreamPlugin
class MoflixPlugin: Plugin() {
override fun load(context: Context) {
// All providers should be added in this manner. Please don't edit the providers list directly.
registerMainAPI(Moflix())
2024-01-30 16:08:30 +00:00
registerMainAPI(Cineclix())
2024-01-15 06:24:24 +00:00
registerExtractorAPI(MoflixClick())
registerExtractorAPI(Highstream())
registerExtractorAPI(MoflixFans())
registerExtractorAPI(MoflixLink())
2024-01-30 16:08:30 +00:00
registerExtractorAPI(Doodstream())
2024-01-15 06:24:24 +00:00
}
}