cloudstream-extensions-hexated/Animasu/src/main/kotlin/com/hexated/AnimasuPlugin.kt

17 lines
530 B
Kotlin
Raw Normal View History

2023-07-26 11:59:46 +00:00
package com.hexated
import com.lagradost.cloudstream3.plugins.CloudstreamPlugin
import com.lagradost.cloudstream3.plugins.Plugin
import android.content.Context
@CloudstreamPlugin
class AnimasuPlugin: Plugin() {
override fun load(context: Context) {
// All providers should be added in this manner. Please don't edit the providers list directly.
registerMainAPI(Animasu())
2023-11-28 22:44:01 +00:00
registerExtractorAPI(Archivd())
registerExtractorAPI(Newuservideo())
2023-12-17 23:16:58 +00:00
registerExtractorAPI(Vidhidepro())
2023-07-26 11:59:46 +00:00
}
}