mirror of
https://github.com/daniviga/django-ram.git
synced 2025-08-04 13:17:50 +02:00
7 lines
127 B
Python
7 lines
127 B
Python
from django.urls import path
|
|
from consist.views import ConsistList
|
|
|
|
urlpatterns = [
|
|
path("list", ConsistList.as_view()),
|
|
]
|