mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-04-05 08:47:12 +02:00
7 lines
136 B
Python
7 lines
136 B
Python
from django.urls import path
|
|
import apps.export_app.views as views
|
|
|
|
urlpatterns = [
|
|
path("export/", views.export, name="export"),
|
|
]
|