cloudstream-extensions-hexated/Nimegami/src/main/kotlin/com/hexated/NimegamiPlugin.kt

17 lines
532 B
Kotlin
Raw Normal View History

2023-07-24 14:25:57 +00:00
package com.hexated
import com.lagradost.cloudstream3.plugins.CloudstreamPlugin
import com.lagradost.cloudstream3.plugins.Plugin
import android.content.Context
@CloudstreamPlugin
class NimegamiPlugin: Plugin() {
override fun load(context: Context) {
// All providers should be added in this manner. Please don't edit the providers list directly.
registerMainAPI(Nimegami())
registerExtractorAPI(Mitedrive())
2024-01-15 13:04:54 +00:00
registerExtractorAPI(Berkasdrive())
2024-01-25 19:21:19 +00:00
registerExtractorAPI(Videogami())
2023-07-24 14:25:57 +00:00
}
}