Aria Moradi d0793a1741
add linting to multisrc (#8740)
* add linting to multisrc

* remove generated blocks

* lint again

* re-format the file

* remove buildScript block

* manaully format

* remove groups
2021-08-22 11:29:08 -04:00

12 lines
535 B
Kotlin

package eu.kanade.tachiyomi.extension.en.readvinlandsagamangaonline
import eu.kanade.tachiyomi.multisrc.mangacatalog.MangaCatalog
class ReadVinlandSagaMangaOnline : MangaCatalog("Read Vinland Saga Manga Online", "https://ww1.readvinlandsaga.com", "en") {
override val sourceList = listOf(
Pair("Vinland Saga", "$baseUrl/manga/vinland-saga/"),
Pair("Fan Colored", "$baseUrl/manga/vinland-saga-colored/"),
Pair("Planetes", "$baseUrl/manga/planetes/"),
).sortedBy { it.first }.distinctBy { it.second }
}