8 lines
142 B
Python
8 lines
142 B
Python
from django.urls import path
|
|
|
|
from .views import VehicleList
|
|
|
|
urlpatterns = [
|
|
path('list/', VehicleList.as_view(), name='vehicle_list')
|
|
]
|