b77b8d5504
* Setup for Coverage and Codcov.io (#6) * add pip install command (#8) * More tests (#9) * Update Version number
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"),
|
|
]
|