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

8 lines
148 B
Python

from django.conf.urls import url
from currencies.views import currencies, CurrencyUpdate
urlpatterns = [
url(r'^currencies/$', currencies),
]