mirror of
https://git.kotyczka.ch/developers/django.git
synced 2025-04-06 07:45:08 +02:00
10 lines
232 B
Python
10 lines
232 B
Python
from django.urls import path,include
|
|
from rest_framework.urlpatterns import format_suffix_patterns
|
|
|
|
from pyapp_api import views
|
|
|
|
urlpatterns = [
|
|
path('items/', views.item_list),
|
|
path('items/<int:pk>/', views.item_detail),
|
|
]
|