mirror of
https://github.com/Hopiu/django-markdownx.git
synced 2026-04-17 11:41:01 +00:00
7 lines
138 B
Python
Executable file
7 lines
138 B
Python
Executable file
from django.conf.urls import url
|
|
|
|
from .views import ImageUploadView
|
|
|
|
urlpatterns = [
|
|
url(r'^upload/$', ImageUploadView.as_view()),
|
|
]
|