4fa1caafa3
* add pip install command * more tests * add more docstrings, and add a view test
7 lines
133 B
Python
7 lines
133 B
Python
from django.conf.urls import url
|
|
import views
|
|
|
|
urlpatterns = [
|
|
url(r'^(?P<name>.*)$', views.show_file, name="dbstorage_file"),
|
|
]
|