mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-20 00:24:16 +01:00
7 lines
159 B
Python
7 lines
159 B
Python
from django.urls import path
|
|
import apps.import_app.views as views
|
|
|
|
urlpatterns = [
|
|
path("import/", views.ImportRunCreateView.as_view(), name="import"),
|
|
]
|