14 lines
421 B
Kotlin
14 lines
421 B
Kotlin
package eu.kanade.tachiyomi.extension.en.hentai20
|
|
|
|
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
|
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
|
import okhttp3.OkHttpClient
|
|
import java.util.concurrent.TimeUnit
|
|
|
|
class Hentai20 : Madara("Hentai20", "https://hentai20.com", "en") {
|
|
|
|
override val client: OkHttpClient = super.client.newBuilder()
|
|
.rateLimit(1, 1, TimeUnit.SECONDS)
|
|
.build()
|
|
}
|