2022-08-06 21:32:26 +00:00
|
|
|
package eu.kanade.tachiyomi.extension.pt.mangasoverall
|
|
|
|
|
|
|
|
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
|
|
|
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
|
|
|
import okhttp3.OkHttpClient
|
|
|
|
import java.text.SimpleDateFormat
|
|
|
|
import java.util.Locale
|
|
|
|
import java.util.concurrent.TimeUnit
|
|
|
|
|
2023-02-03 18:25:28 +00:00
|
|
|
class RogMangas : Madara(
|
|
|
|
"ROG Mangás",
|
|
|
|
"https://rogmangas.com",
|
2022-08-06 21:32:26 +00:00
|
|
|
"pt-BR",
|
2023-02-11 19:21:03 +00:00
|
|
|
SimpleDateFormat("dd/MM/yyyy", Locale("pt", "BR")),
|
2022-08-06 21:32:26 +00:00
|
|
|
) {
|
|
|
|
|
2023-02-03 18:25:28 +00:00
|
|
|
// Changed their name from Mangás Overall to ROG Mangás.
|
|
|
|
override val id: Long = 7865569692125193686
|
|
|
|
|
2022-08-06 21:32:26 +00:00
|
|
|
override val client: OkHttpClient = super.client.newBuilder()
|
|
|
|
.rateLimit(1, 2, TimeUnit.SECONDS)
|
|
|
|
.build()
|
|
|
|
}
|