cloudstream-extensions-hexated/Cinemathek/src/main/kotlin/com/hexated/CinemathekPlugin.kt

18 lines
574 B
Kotlin
Raw Normal View History

2024-01-15 10:25:32 +00:00
package com.hexated
import com.lagradost.cloudstream3.plugins.CloudstreamPlugin
import com.lagradost.cloudstream3.plugins.Plugin
import android.content.Context
@CloudstreamPlugin
class CinemathekPlugin: Plugin() {
override fun load(context: Context) {
// All providers should be added in this manner. Please don't edit the providers list directly.
registerMainAPI(Cinemathek())
2024-01-15 21:50:32 +00:00
registerExtractorAPI(StreamwishCom())
registerExtractorAPI(Ds2play())
registerExtractorAPI(Do0od())
registerExtractorAPI(Filelions())
2024-01-15 10:25:32 +00:00
}
}