from django.urls import path, re_path, include
from . import views
urlpatterns=[
path('',views.index,name='bidex'),
path('<str:bookurl>',views.book,name='bbook'),
path('<str:bookurl>/<int:chapnum>',views.chapter,name='bchap'),
]