Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import com.lagradost.cloudstream3.SearchResponse
import com.lagradost.cloudstream3.TvType

class ExampleProvider : MainAPI() { // All providers must be an instance of MainAPI
override var mainUrl = "https://example.com/"
override var name = "Example provider"
override var mainUrl = "https://www.hotstar.com"
override var name = "JioHotstar provider"
override val supportedTypes = setOf(TvType.Movie)

override var lang = "en"
Expand All @@ -18,4 +18,4 @@ class ExampleProvider : MainAPI() { // All providers must be an instance of Main
override suspend fun search(query: String): List<SearchResponse> {
return listOf()
}
}
}