Initial commit
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 2.6 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 1.5 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 3.5 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 6.5 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 10 KiB |
BIN
multisrc/overrides/madara/mangaclash/res/web_hi_res_512.png
Normal file
BIN
multisrc/overrides/madara/mangaclash/res/web_hi_res_512.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 55 KiB |
20
multisrc/overrides/madara/mangaclash/src/MangaClash.kt
Normal file
20
multisrc/overrides/madara/mangaclash/src/MangaClash.kt
Normal file
@@ -0,0 +1,20 @@
|
||||
package eu.kanade.tachiyomi.extension.en.mangaclash
|
||||
|
||||
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
|
||||
|
||||
class MangaClash : Madara(
|
||||
"MangaClash",
|
||||
"https://mangaclash.com",
|
||||
"en",
|
||||
dateFormat = SimpleDateFormat("MM/dd/yy", Locale.US),
|
||||
) {
|
||||
|
||||
override val client: OkHttpClient = super.client.newBuilder()
|
||||
.rateLimit(1, 1, TimeUnit.SECONDS)
|
||||
.build()
|
||||
}
|
||||
Reference in New Issue
Block a user