mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-29 05:31:59 +02: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"),
|
|
]
|