12 lines
408 B
Kotlin
12 lines
408 B
Kotlin
|
package eu.kanade.tachiyomi.extension.en.mangatellers
|
||
|
|
||
|
import eu.kanade.tachiyomi.multisrc.foolslide.FoolSlide
|
||
|
import eu.kanade.tachiyomi.network.GET
|
||
|
import okhttp3.Request
|
||
|
|
||
|
class Mangatellers : FoolSlide("Mangatellers", "http://www.mangatellers.gr", "en", "/reader/reader") {
|
||
|
override fun popularMangaRequest(page: Int): Request {
|
||
|
return GET("$baseUrl$urlModifier/list/$page/", headers)
|
||
|
}
|
||
|
}
|