cloudstream-extensions-mult.../PinoyMoviesHub/src/main/kotlin/com/lagradost/PinoyMoviesHubPlugin.kt
Jace 5db1331939
[Provider] Pinoymovieshub (#30)
* [Provider] Pinoy Movies Hub

* Minor cleanups

* Applied PR changes

* Parse episode list and date

* Applied PR suggestions.

- Fetch movie Id from episode link on loadLinks

* Minor cleanups
2022-10-10 19:45:52 +00:00

14 lines
418 B
Kotlin

package com.lagradost
import com.lagradost.cloudstream3.plugins.CloudstreamPlugin
import com.lagradost.cloudstream3.plugins.Plugin
import android.content.Context
@CloudstreamPlugin
class PinoyMoviesHubPlugin: Plugin() {
override fun load(context: Context) {
// All providers should be added in this manner. Please don't edit the providers list directly.
registerMainAPI(PinoyMoviesHub())
}
}