blob: bd1c9ce8078fa08c847b55bc16292269fb44d6df (
plain)
1
2
3
4
5
6
7
8
|
from django.urls import path
from . import views
app_name = "read"
urlpatterns = [
path('', views.index, name='index'),
path('/<int:manga_id>/<str:chapter_id>', views.read, name='read'),
]
|