cloudstream-extensions-hexated/NontonAnimeIDProvider/src/main/kotlin/com/hexated/NontonAnimeIDProviderPlugin.kt

19 lines
655 B
Kotlin
Raw Normal View History

2022-09-09 16:09:54 +00:00
package com.hexated
2022-08-31 04:26:39 +00:00
import com.lagradost.cloudstream3.plugins.CloudstreamPlugin
import com.lagradost.cloudstream3.plugins.Plugin
import android.content.Context
@CloudstreamPlugin
2022-09-09 16:09:54 +00:00
class NontonAnimeIDProviderPlugin: Plugin() {
2022-08-31 04:26:39 +00:00
override fun load(context: Context) {
// All providers should be added in this manner. Please don't edit the providers list directly.
2022-09-09 16:09:54 +00:00
registerMainAPI(NontonAnimeIDProvider())
2024-01-06 13:56:27 +00:00
registerExtractorAPI(Nontonanimeid())
2023-09-28 14:05:17 +00:00
registerExtractorAPI(EmbedKotakAnimeid())
2024-01-06 13:56:27 +00:00
registerExtractorAPI(KotakAnimeidCom())
registerExtractorAPI(Gdplayer())
2024-01-14 12:51:28 +00:00
registerExtractorAPI(Kotaksb())
2022-08-31 04:26:39 +00:00
}
}