mirror of
https://github.com/QingdaoU/OnlineJudge.git
synced 2025-01-01 10:02:01 +00:00
8 lines
187 B
Python
8 lines
187 B
Python
|
from django.conf.urls import url
|
||
|
|
||
|
from .views import SimditorImageUploadAPIView
|
||
|
|
||
|
urlpatterns = [
|
||
|
url(r"^upload_image/?$", SimditorImageUploadAPIView.as_view(), name="upload_image")
|
||
|
]
|