File size: 347 Bytes
24e6f5b | 1 2 3 4 5 6 7 8 9 | from django.urls import path
from .views import IncomeForecastView, AnomalyListView, ForecastView
urlpatterns = [
path('income/forecast/', IncomeForecastView.as_view(), name='income-forecast'),
path('anomalies/', AnomalyListView.as_view(), name='anomaly-list'),
path('forecast/', ForecastView.as_view(), name='cash-flow-forecast'),
]
|