| 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'), | |
| ] | |