From c5fd0f60ca6e20bca8131ed4c05df8231610e989 Mon Sep 17 00:00:00 2001 From: tuan041 <30403510+tuan041@users.noreply.github.com> Date: Wed, 19 Jul 2023 23:32:08 +0700 Subject: [PATCH] new --- .../src/main/com/hexated/Phim1080ProviderPlugin.kt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Phim1080/src/main/com/hexated/Phim1080ProviderPlugin.kt diff --git a/Phim1080/src/main/com/hexated/Phim1080ProviderPlugin.kt b/Phim1080/src/main/com/hexated/Phim1080ProviderPlugin.kt new file mode 100644 index 00000000..a521b6ac --- /dev/null +++ b/Phim1080/src/main/com/hexated/Phim1080ProviderPlugin.kt @@ -0,0 +1,14 @@ + +package com.hexated + +import com.lagradost.cloudstream3.plugins.CloudstreamPlugin +import com.lagradost.cloudstream3.plugins.Plugin +import android.content.Context + +@CloudstreamPlugin +class Phim1080ProviderPlugin: Plugin() { + override fun load(context: Context) { + // All providers should be added in this manner. Please don't edit the providers list directly. + registerMainAPI(Phim1080Provider()) + } +}