added new sources into Kuramanime & Oploverz

This commit is contained in:
hexated 2023-01-17 18:11:51 +07:00
parent 285eb25bc8
commit 4edcde11b0
5 changed files with 88 additions and 7 deletions

View file

@ -1,5 +1,5 @@
// use an integer for version numbers
version = 7
version = 8
cloudstream {

View file

@ -11,5 +11,6 @@ class KuramanimeProviderPlugin: Plugin() {
// All providers should be added in this manner. Please don't edit the providers list directly.
registerMainAPI(KuramanimeProvider())
registerExtractorAPI(Nyomo())
registerExtractorAPI(Streamhide())
}
}

View file

@ -3,5 +3,11 @@ package com.hexated
import com.lagradost.cloudstream3.extractors.StreamSB
class Nyomo : StreamSB() {
override var name: String = "Nyomo"
override var mainUrl = "https://nyomo.my.id"
}
class Streamhide : StreamSB() {
override var name: String = "Streamhide"
override var mainUrl: String = "https://streamhide.to"
}