8 lines
187 B
Python
8 lines
187 B
Python
from django.urls import path, include
|
|
|
|
from utils.views import JsonToTypeListCreate
|
|
|
|
urlpatterns = [
|
|
path('utils/jasontotype/', JsonToTypeListCreate.as_view(), name='jasontotype'),
|
|
]
|