6 lines
165 B
Python
6 lines
165 B
Python
from django.urls import path, include
|
|
from .views import ExportModelView
|
|
|
|
urlpatterns = [
|
|
path('exportmodel/', ExportModelView.as_view(), name='export-model'),
|
|
] |