Systemy-rozmyte-sql/backend/cars/urls.py
Bartosz Karwacki 52649a0beb Lint
2022-01-23 19:07:02 +01:00

10 lines
251 B
Python

from django.urls import include, path
from .views import CarList, SettingsAPIView
# The API URLs are now determined automatically by the router.
urlpatterns = [
path("cars", CarList.as_view()),
path("settings", SettingsAPIView.as_view()),
]