mirror of
https://github.com/mediacms-io/mediacms.git
synced 2024-11-22 00:03:28 +01:00
11 lines
192 B
Python
11 lines
192 B
Python
# -*- coding: utf-8 -*-
|
|
from django.conf.urls import url
|
|
|
|
from . import views
|
|
|
|
app_name = "uploader"
|
|
|
|
urlpatterns = [
|
|
url(r"^upload/$", views.FineUploaderView.as_view(), name="upload"),
|
|
]
|