Tachiyomi-Extensions/multisrc/overrides/mangacatalog/readhaikyuumangaonline/src/ReadHaikyuuMangaOnline.kt

13 lines
586 B
Kotlin
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package eu.kanade.tachiyomi.extension.en.readhaikyuumangaonline
import eu.kanade.tachiyomi.multisrc.mangacatalog.MangaCatalog
class ReadHaikyuuMangaOnline : MangaCatalog("Read Haikyuu!! Manga Online", "https://ww6.readhaikyuu.com", "en") {
override val sourceList = listOf(
Pair("Haikyuu", "$baseUrl/manga/haikyuu/"),
Pair("Haikyuu-bu!!", "$baseUrl/manga/haikyuu-bu/"),
Pair("Haikyuu! x Nisekoi", "$baseUrl/manga/haikyuu-x-nisekoi/"),
Pair("Lets! Haikyu!?", "$baseUrl/manga/lets-haikyu/"),
).sortedBy { it.first }.distinctBy { it.second }
}