1
1
Fork 0
novelmetrix-python/ras/api/urls.py

7 lines
145 B
Python
Raw Normal View History

2022-09-05 15:53:48 +02:00
from django.urls import path
from .views import *
urlpatterns = [
path('books', api_all_books),
path('books/<int:_id>', api_get_book),
]