from django.urls import path from .views import CurrencyRatesView, CurrenciesListView, CurrencyConvertView app_name = 'currency' urlpatterns = [ path('rates/', CurrencyRatesView.as_view(), name='currency-rates'), path('currencies/', CurrenciesListView.as_view(), name='currency-currencies'), path('convert/', CurrencyConvertView.as_view(), name='currency-convert'), ]