cloudstream-extensions-hexated/Aniworld/src/main/kotlin/com/hexated/AniworldPlugin.kt

18 lines
577 B
Kotlin
Raw Normal View History

2023-06-15 16:26:36 +00:00
package com.hexated
import com.lagradost.cloudstream3.plugins.CloudstreamPlugin
import com.lagradost.cloudstream3.plugins.Plugin
import android.content.Context
@CloudstreamPlugin
class AniworldPlugin: Plugin() {
override fun load(context: Context) {
// All providers should be added in this manner. Please don't edit the providers list directly.
registerMainAPI(Aniworld())
2023-07-25 07:46:32 +00:00
registerMainAPI(Serienstream())
2023-06-15 16:26:36 +00:00
registerExtractorAPI(Urochsunloath())
2023-06-18 23:40:00 +00:00
registerExtractorAPI(Simpulumlamerop())
registerExtractorAPI(Dooood())
2023-06-15 16:26:36 +00:00
}
}