lib.itmens/catalog/urls.py
2022-12-15 17:29:45 -05:00

9 lines
201 B
Python

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