Files
Ai/farm_alerts/urls.py
T
2026-04-25 17:22:41 +03:30

10 lines
284 B
Python

from django.urls import path
from .views import FarmAlertsTimelineView, FarmAlertsTrackerView
urlpatterns = [
path("tracker/", FarmAlertsTrackerView.as_view(), name="farm-alerts-tracker"),
path("timeline/", FarmAlertsTimelineView.as_view(), name="farm-alerts-timeline"),
]