Files
dj52/utils/urls.py
Beyhan Oğur ec28a2024d first commit
2026-04-26 22:22:29 +03:00

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'),
]