add Mirai Scans
parent
09500c0734
commit
939f08b8a1
@ -1,4 +1,4 @@
|
|||||||
package org.koitharu.kotatsu.parsers.site.en
|
package org.koitharu.kotatsu.parsers.site.all
|
||||||
|
|
||||||
import kotlinx.coroutines.async
|
import kotlinx.coroutines.async
|
||||||
import kotlinx.coroutines.coroutineScope
|
import kotlinx.coroutines.coroutineScope
|
||||||
@ -0,0 +1,14 @@
|
|||||||
|
package org.koitharu.kotatsu.parsers.site.mangareader.id
|
||||||
|
|
||||||
|
import org.koitharu.kotatsu.parsers.MangaLoaderContext
|
||||||
|
import org.koitharu.kotatsu.parsers.MangaSourceParser
|
||||||
|
import org.koitharu.kotatsu.parsers.model.MangaSource
|
||||||
|
import org.koitharu.kotatsu.parsers.site.mangareader.MangaReaderParser
|
||||||
|
import java.util.Locale
|
||||||
|
|
||||||
|
@MangaSourceParser("MIRAISCANS", "Mirai Scans", "id")
|
||||||
|
internal class MiraiScans(context: MangaLoaderContext) :
|
||||||
|
MangaReaderParser(context, MangaSource.MIRAISCANS, "miraiscans.com", pageSize = 20, searchPageSize = 10) {
|
||||||
|
override val sourceLocale: Locale = Locale.ENGLISH
|
||||||
|
override val listUrl = "/komik"
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue