web_AI-5/django/didgeridoo/currencies/urls.py

8 lines
132 B
Python
Raw Normal View History

2017-12-18 19:19:08 +01:00
from django.conf.urls import url
2017-12-19 21:28:05 +01:00
from currencies.views import currencies
2017-12-18 19:19:08 +01:00
urlpatterns = [
2017-12-19 21:28:05 +01:00
url(r'^currencies/$', currencies),
2017-12-18 19:19:08 +01:00
]