lib.itmens/catalog/urls.py

10 lines
201 B
Python
Raw Normal View History

2022-12-15 17:29:35 -05:00
from django.urls import path, re_path
from .api import api
2022-12-15 17:29:35 -05:00
from .views import *
urlpatterns = [
path("", api.urls),
2022-12-15 17:29:35 -05:00
re_path('book/(?P<uid>[A-Za-z0-9]{21,22})/', retrieve, name='retrieve'),
]