django-dbfilestorage/dbfilestorage/urls.py
Tyrel Souza 4fa1caafa3 More tests (#9)
* add pip install command

* more tests

* add more docstrings, and add a view test
2016-12-08 15:30:39 -05:00

7 lines
133 B
Python

from django.conf.urls import url
import views
urlpatterns = [
url(r'^(?P<name>.*)$', views.show_file, name="dbstorage_file"),
]