FinMK / backend /analytics /urls.py
Kumar
Refactor: Exclude PDF and CSV files from Git to fix HF push error
24e6f5b
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'),
]