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

7 lines
131 B
Python
Raw Normal View History

2017-12-18 19:19:08 +01:00
from django.conf.urls import url
2018-02-28 01:22:27 +01:00
from currencies.views import currencies
2018-01-14 22:54:46 +01:00
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
]