mirror of
https://github.com/revanced/revanced-patches.git
synced 2025-12-07 01:51:27 +01:00
12 lines
299 B
Kotlin
12 lines
299 B
Kotlin
package net.revanced.patches
|
|
|
|
import net.revanced.patches.ads.VideoAds
|
|
|
|
// This object contains all the patches and should be imported when using this library
|
|
object Index {
|
|
// Array of patches. New patches should be added to the array
|
|
val patches = arrayOf(
|
|
VideoAds::class
|
|
)
|
|
}
|