10 lines
179 B
Python
10 lines
179 B
Python
from .helpers.std import Std
|
|
from .rawdevart_com import RawDevArtCom
|
|
|
|
|
|
class RawNekoCom(RawDevArtCom, Std):
|
|
_chapter_selector = r'/chapter-(\d+(?:-\d+)?)'
|
|
|
|
|
|
main = RawNekoCom
|