You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
551 B
13 lines
551 B
from storage import files_api
|
|
from django.conf.urls import url
|
|
|
|
urlpatterns = [
|
|
url(r'upload_file/$', files_api.upload_files),
|
|
url(r'check_file_load/$', files_api.check_file_load),
|
|
url(r'send_crop_data/$', files_api.crop_image),
|
|
url(r'get_image_url/$', files_api.get_image_url),
|
|
url(r'get_current_image_clip_id/$', files_api.get_current_image_clip_id),
|
|
url(r'check_file_error/$', files_api.check_file_error),
|
|
url(r'del_image/$', files_api.del_image),
|
|
url(r'get_file_sketch/$', files_api.get_file_sketch)
|
|
]
|
|
|