mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-18 05:52:15 +00:00
8 lines
140 B
Python
8 lines
140 B
Python
from django.urls import path
|
|
|
|
from training import views
|
|
|
|
urlpatterns = [
|
|
path('items/', views.ItemList.as_view(), name='item_list'),
|
|
]
|